chore: use alpine instead of debian (#206)
All checks were successful
Publish latest version / build (push) Successful in 1m26s
All checks were successful
Publish latest version / build (push) Successful in 1m26s
Close #126 Follow-up of #125 Reviewed-on: #206 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
This commit is contained in:
parent
23446eb399
commit
ee2e15b513
1 changed files with 2 additions and 4 deletions
|
@ -1,13 +1,11 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM node:22.9-bullseye-slim
|
FROM node:22.3-alpine3.19
|
||||||
|
|
||||||
ENV DOCKERIZED=1
|
ENV DOCKERIZED=1
|
||||||
RUN mkdir /config && \
|
RUN mkdir /config && \
|
||||||
chown node:node /config && \
|
chown node:node /config && \
|
||||||
apt-get update && \
|
apk add dumb-init ffmpeg
|
||||||
apt-get install -y dumb-init ffmpeg && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --chown=node:node . .
|
COPY --chown=node:node . .
|
||||||
|
|
Loading…
Reference in a new issue