6 lines
90 B
Docker
6 lines
90 B
Docker
|
|
FROM python
|
||
|
|
|
||
|
|
COPY ./ /app
|
||
|
|
RUN pip install -r /app/requirements.txt
|
||
|
|
|
||
|
|
CMD python /app/run.py
|