use alpine instead of debian
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 1m41s
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 1m41s
This commit is contained in:
parent
23446eb399
commit
4296e0c4c0
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