From 40e7e36ef6bd87d51293fffe0513ea5e3dc4a3c9 Mon Sep 17 00:00:00 2001 From: advplyr Date: Mon, 12 May 2025 15:15:18 -0500 Subject: [PATCH] Dockerfile unnecessary stage 1 apks --- Dockerfile | 8 ++------ tailwind.config.js | 0 2 files changed, 2 insertions(+), 6 deletions(-) create mode 100644 tailwind.config.js diff --git a/Dockerfile b/Dockerfile index 3eea9cd5..1ba107fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 00000000..e69de29b