From 176320154fb17ee23682a50bd98c083133141139 Mon Sep 17 00:00:00 2001 From: DIKER0K Date: Mon, 21 Jul 2025 03:51:56 +0500 Subject: [PATCH] fix --- dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dockerfile b/dockerfile index 6288238..c065589 100644 --- a/dockerfile +++ b/dockerfile @@ -8,10 +8,9 @@ RUN pip install -r requirements.txt COPY . . +RUN mkdir -p /app/static/skins /app/static/capes /app/static/capes_store && \ + chown -R 1000:1000 /app/static + EXPOSE 3000 CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "3000"] - -RUN mkdir -p /app/static/skins /app/static/capes /app/static/capes_store && \ - chown -R 1000:1000 /app/static -USER 1000:1000