my-homepage/Dockerfile

14 lines
238 B
Docker
Raw Normal View History

2022-09-14 02:24:34 +00:00
FROM python:3.10
2021-01-26 01:42:53 +00:00
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 . .
2021-02-28 01:28:04 +00:00
CMD ["gunicorn", "-b", "0.0.0.0:4040", "my_homepage:create_app()"]