olgram/Dockerfile

13 lines
172 B
Docker
Raw Normal View History

2021-07-11 12:53:33 +03:00
FROM python:3.8-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip && \
pip install -r requirements.txt
2021-09-09 23:51:58 +03:00
EXPOSE 80
2021-07-11 12:53:33 +03:00
ENTRYPOINT ["./docker-entrypoint.sh"]