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

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}