diff --git a/Dockerfile b/Dockerfile index db04aa3..9b47562 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ COPY requirements.txt . RUN ["pip", "install", "-r", "requirements.txt"] # Copy the application: +ADD static static/ +ADD templates templates/ ADD app.py . ADD database.py . ADD dtos.py .