chore: use alpine instead of debian (#206)
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:
Mylloon 2024-12-07 20:58:33 +01:00 committed by Mylloon
parent 23446eb399
commit ee2e15b513
Signed by: Forgejo
GPG key ID: E72245C752A07631

View file

@ -1,13 +1,11 @@
# syntax=docker/dockerfile:1
FROM node:22.9-bullseye-slim
FROM node:22.3-alpine3.19
ENV DOCKERIZED=1
RUN mkdir /config && \
chown node:node /config && \
apt-get update && \
apt-get install -y dumb-init ffmpeg && \
rm -rf /var/lib/apt/lists/*
apk add dumb-init ffmpeg
WORKDIR /app
COPY --chown=node:node . .