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 6e858809bd
All checks were successful
continuous-integration/drone/push Build is passing
No need to have bash + clean tools after building
2020-04-13 21:26:51 +02:00

9 lines
209 B
Docker

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