1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-05-24 18:13:25 +00:00
olgram/Dockerfile
2021-07-11 12:53:33 +03:00

11 lines
161 B
Docker

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