11 lines
No EOL
143 B
Docker
11 lines
No EOL
143 B
Docker
FROM python:3
|
|
|
|
COPY requirements.txt /
|
|
|
|
RUN pip3 install -r /requirements.txt
|
|
|
|
VOLUME /config
|
|
|
|
COPY src /app
|
|
|
|
CMD [ "python3", "/app/main.py" ] |