From 1b24d484afd99ab260d3a0a7d08efef307167fb1 Mon Sep 17 00:00:00 2001 From: grillkol Date: Mon, 27 Apr 2026 19:14:26 +0200 Subject: [PATCH] fixed dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a0f5a47..af10b9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY api/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY api/app/ ./app/ -COPY api/static/ ./static/ # <-- Add this line +COPY api/static/ ./static/ RUN mkdir -p /data EXPOSE 8000 CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file