mirror of https://github.com/Askill/SurvBot.git
6 lines
96 B
Docker
6 lines
96 B
Docker
|
|
FROM python:3.7
|
||
|
|
COPY ./ /app
|
||
|
|
WORKDIR /app
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
CMD python app.py
|