diff --git a/Dockerfile b/Dockerfile index 29cab9b..dc02c44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY app.py . +COPY site /app/site EXPOSE 5000 -CMD ["python", "app.py"] +CMD ["python", "site/app.py"] diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py