7 lines
94 B
Docker
7 lines
94 B
Docker
FROM python:slim
|
|
|
|
COPY ./ .
|
|
RUN pip install -r ./requirements.txt
|
|
|
|
CMD ["python", "./run.py"]
|