1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-05-24 20:23:25 +00:00
olgram/instance/Dockerfile

11 lines
155 B
Docker

FROM python:3.8-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip && \
pip install -r requirements.txt && \
CMD ["python", "instance"]