channel-block-tg/Dockerfile
Kostiantyn Kriuchkov 43b241d4e7 Separated loader with dp, bot and storage and added app,
which we'll be executing
2020-04-14 10:54:17 +03:00

10 lines
163 B
Docker

FROM python:3.7-slim
WORKDIR /botname
COPY requirements.txt /botname/
RUN pip install -r /botname/requirements.txt
COPY . /botname/
CMD python3 /botname/app.py