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 133ec90b1e
All checks were successful
continuous-integration/drone/push Build is passing
Use the non slim variant for docker image
2022-10-26 13:10:56 +00:00

8 lines
155 B
Docker

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