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 9baba7c6a0
All checks were successful
continuous-integration/drone/push Build is passing
Useless Dockerfile ENV
2020-04-13 21:19:29 +02:00

9 lines
192 B
Docker

FROM python:alpine
COPY pynyaata /app/pynyaata
COPY requirements.txt /app
COPY *.py /app/
WORKDIR /app
RUN apk add build-base bash && pip install -r requirements.txt
CMD ["python", "run.py"]