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 Normal View History

2023-04-06 00:23:20 +00:00
FROM python:3.11.3
2019-11-25 22:52:22 +01:00
COPY pynyaata /app/pynyaata
2020-05-27 09:29:23 +02:00
COPY requirements.txt *.py /app/
2020-04-09 10:27:42 +02:00
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "run.py"]