From 5e7cfec791390274b4c77c76c3d57e2ccd864cc1 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Thu, 12 Mar 2026 19:28:36 +0100 Subject: [PATCH] fix: optimize dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0e26d2..f5f40c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM python:3-alpine RUN apk add --no-cache curl lzo-dev gcc libc-dev WORKDIR /app -COPY ./ . RUN pip install --no-cache-dir -U pip RUN pip install --no-cache-dir --break-system-packages waitress @@ -11,6 +10,7 @@ RUN pip install --no-cache-dir --break-system-packages waitress COPY req.txt . RUN pip install --no-cache-dir -r req.txt +COPY ./ . RUN ln -s /app/uploads/ /app/static/uploads EXPOSE 5000/tcp