Merge pull request #58 from thaiminhpv/main

Fix "ModuleNotFoundError: No module named 'db'" bug when running docker-compose up
This commit is contained in:
Saifeddine ALOUI 2023-04-09 21:22:38 +02:00 committed by GitHub
commit 3f9cb7388e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@ RUN python3 -m venv venv && . venv/bin/activate
RUN python3 -m pip install --no-cache-dir -r requirements.txt --upgrade pip
COPY ./app.py /srv/app.py
COPY ./db.py /srv/db.py
COPY ./static /srv/static
COPY ./templates /srv/templates