From 24766e42ea4febb94bd3d082e72844400b9588d0 Mon Sep 17 00:00:00 2001 From: maggi373 <40539743+maggi373@users.noreply.github.com> Date: Sun, 26 May 2024 19:27:57 +0200 Subject: [PATCH] fix docker image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c95de3a..3c7f149 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM python:3.10-alpine WORKDIR /app -COPY /models/ /app/ -COPY /static/ /app/ -COPY /templates/ /app/ +COPY /models/ /app/models/ +COPY /static/ /app/static/ +COPY /templates/ /app/templates/ COPY /api.py /app/ COPY /app.py /app/ COPY /LICENSE.md /app/