parent
ef765c4c87
commit
cb71b02957
@ -0,0 +1,12 @@ |
||||
FROM python:3.10 |
||||
|
||||
WORKDIR /usr/src/app |
||||
|
||||
COPY requirements.txt . |
||||
COPY main.py . |
||||
COPY LICENSE . |
||||
COPY README.md . |
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt |
||||
|
||||
CMD ["python", "main.py"] |
Loading…
Reference in new issue