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

8 lines
155 B
Docker
Raw Permalink Normal View History

2023-08-26 06:40:34 +00:00
FROM python:3.11.5
2019-11-25 21:52:22 +00:00
COPY pynyaata /app/pynyaata
2020-05-27 07:29:23 +00:00
COPY requirements.txt *.py /app/
2020-04-09 08:27:42 +00:00
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "run.py"]