Merge pull request #3540 from PeterDaveHello/patch-1

Optimize Dockerfile to use `apk add` with `--no-cache`
This commit is contained in:
Cohee 2025-02-23 12:50:28 +02:00 committed by GitHub
commit 919df98c6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ FROM node:lts-alpine3.19
ARG APP_HOME=/home/node/app
# Install system dependencies
RUN apk add gcompat tini git
RUN apk add --no-cache gcompat tini git
# Create app directory
WORKDIR ${APP_HOME}