dudle2csv/Dockerfile

4 lines
153 B
Docker

FROM alpine:3.7
ADD . /
RUN apk add --update --no-cache python3 && pip3 --no-cache-dir install -r requirements.txt
ENTRYPOINT ["python3", "dudle2csv.py"]