Tom/Dockerfile

9 lines
133 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
COPY src .
CMD [ "python", "-u", "./main.py" ]