Dockerfile unnecessary stage 1 apks

This commit is contained in:
advplyr 2025-05-12 15:15:18 -05:00
parent fd0af6b2dd
commit 40e7e36ef6
2 changed files with 2 additions and 6 deletions

View File

@ -10,15 +10,11 @@ FROM node:20-alpine AS build-server
ENV NODE_ENV=production
RUN apk update && \
apk add --no-cache --update \
RUN apk add --no-cache --update \
curl \
tzdata \
ffmpeg \
make \
python3 \
g++ \
tini \
unzip
WORKDIR /server
@ -46,7 +42,7 @@ RUN npm ci --only=production
FROM node:20-alpine
# Install only runtime dependencies
RUN apk add --no-cache \
RUN apk add --no-cache --update \
tzdata \
ffmpeg \
tini

0
tailwind.config.js Normal file
View File