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

9 lines
163 B
Docker
Raw Normal View History

FROM python:slim
2019-11-25 21:52:22 +00:00
COPY pynyaata /app/pynyaata
COPY requirements.txt /app
2020-04-09 19:06:22 +00:00
COPY *.py /app/
2020-04-09 08:27:42 +00:00
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "run.py"]