This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/Dockerfile
Renovate Bot 82379bf81d
All checks were successful
books / flake8 (push) Successful in 51s
books / docker (push) Successful in 1m2s
books / pypi (push) Has been skipped
Update python Docker tag to v3.11.5
2023-08-26 06:40:34 +00:00

8 lines
155 B
Docker

FROM python:3.11.5
COPY pynyaata /app/pynyaata
COPY requirements.txt *.py /app/
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "run.py"]