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 a98d36dd65
All checks were successful
continuous-integration/drone/push Build is passing
Bump python from 3.9.2-slim to 3.10.0a6-slim
Bumps python from 3.9.2-slim to 3.10.0a6-slim.
2021-04-03 00:06:34 +00:00

8 lines
162 B
Docker

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