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 a6ea87bd1c
All checks were successful
continuous-integration/drone/push Build is passing
Fix infinite start loop, fix date parsing on alpine, switch to alpine
2020-04-13 21:17:43 +02:00

11 lines
244 B
Docker

FROM python:alpine
ENV DEBIAN_FRONTEND noninteractive
ENV LANG C.UTF-8
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"]