flask-blog/Dockerfile

16 lines
192 B
Docker
Raw Permalink Normal View History

2023-08-18 15:24:47 +00:00
FROM python:3.9-slim
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN apt update
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD [ "./startup.sh" ]