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 4d0a312c1a
Some checks reported errors
continuous-integration/drone/push Build was killed
Back to debian, alpine is catastrophic !!!
2020-04-13 21:35:52 +02:00

9 lines
163 B
Docker

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