diff --git a/Dockerfile b/Dockerfile index 1c2ee03..43ba8aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,9 @@ FROM python:3.9-slim ADD requirements.txt /app/ -WORKDIR /app/ -RUN pip3 install -r requirements.txt +RUN pip3 install -r /app/requirements.txt -ADD app.py /app/ +ADD reporter.py /app/ -EXPOSE 8000 -CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"] \ No newline at end of file +CMD ["python3", "/app/reporter.py"] \ No newline at end of file