9 lines
149 B
Docker
9 lines
149 B
Docker
FROM python:3.8.11-slim
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY README.md .
|
|
COPY src .
|
|
|
|
CMD ["python", "-u", "./main.py"]
|