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
160 B
Docker
Raw Normal View History

2022-01-19 00:18:22 +00:00
FROM python:3.10.2-slim
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"]