my-homepage/Dockerfile

15 lines
307 B
Docker
Raw Normal View History

2021-01-26 01:42:53 +00:00
FROM python:3.8
2021-01-26 02:18:25 +00:00
WORKDIR /app
2021-01-26 01:42:53 +00:00
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
ENV FLASK_APP my_homepage
ENV FLASK_ENV production
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:5000", "my_homepage:create_app()"]
2021-01-26 02:18:25 +00:00
#CMD ["gunicorn", "-b", "127.0.0.1:5000", "my_homepage:create_app()"]