diff --git a/Dockerfile b/Dockerfile index 4b3480d004cbc3869b5b5965689fd7b48219335b..cb752c4ea48bd3c71139e8f1ab4d85d8a8850de7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM python:3.8 WORKDIR / -RUN /usr/local/bin/python -m pip install --upgrade pip -i https://pypi.python.org/simple +RUN python -m pip install --upgrade pip -i https://pypi.python.org/simple COPY requirements.txt ./ RUN pip install -r requirements.txt COPY . . -CMD ["gunicorn", "start:app", "-c", "./gunicorn.conf.py"] \ No newline at end of file +# CMD ["gunicorn", "start:app", "-c", "./gunicorn.conf.py"] +CMD ["python", "start.py"] \ No newline at end of file