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 ENV NODE_ENV=production
RUN apk update && \ RUN apk add --no-cache --update \
apk add --no-cache --update \
curl \ curl \
tzdata \
ffmpeg \
make \ make \
python3 \ python3 \
g++ \ g++ \
tini \
unzip unzip
WORKDIR /server WORKDIR /server
@ -46,7 +42,7 @@ RUN npm ci --only=production
FROM node:20-alpine FROM node:20-alpine
# Install only runtime dependencies # Install only runtime dependencies
RUN apk add --no-cache \ RUN apk add --no-cache --update \
tzdata \ tzdata \
ffmpeg \ ffmpeg \
tini tini

0
tailwind.config.js Normal file
View File