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
Michel Roux 0e89175659
All checks were successful
continuous-integration/drone/push Build is passing
Optimize dockerfile
2020-05-27 09:29:23 +02:00

8 lines
153 B
Docker

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