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 cc1f669a32
All checks were successful
continuous-integration/drone/push Build is passing
Let dependabot decide of the python version
2020-12-08 17:20:44 +01:00

8 lines
159 B
Docker

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