olgram/Dockerfile
2021-09-09 23:51:58 +03:00

13 lines
172 B
Docker

FROM python:3.8-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip && \
pip install -r requirements.txt
EXPOSE 80
ENTRYPOINT ["./docker-entrypoint.sh"]