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