Tom/Dockerfile

10 lines
146 B
Docker
Raw Normal View History

2021-07-27 22:51:52 +02:00
FROM python:3.9.5-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
2021-08-20 08:42:34 +02:00
WORKDIR /opt
2021-07-27 22:51:52 +02:00
COPY src .
CMD [ "python", "-u", "./main.py" ]