Update Dockerfile, settings.json, utils.py, nginx-example.conf, docker-compose.yml, and app.py

This commit is contained in:
Janis
2023-12-19 19:20:10 +01:00
parent 5775cb087a
commit 4844c26002
13 changed files with 376 additions and 227 deletions

View File

@@ -13,8 +13,7 @@ RUN apt-get update && apt-get install -y python3 python3-pip python3-venv
RUN python3 -m venv /app/venv
ENV PATH="/app/venv/bin:$PATH"
# Copy the Python app files to the container
COPY app/* /app/
ADD app/ /app/
# Set the working directory
WORKDIR /app