This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
2019-01-25 00:32:07 +01:00

12 lines
201 B
Docker

FROM alpine:3.8
RUN apk add --update --no-cache python3 && \
pip3 install flask requests && \
adduser -D app
ADD ["ics_merger.py","/"]
CMD ["python3", "-u", "/ics_merger.py"]
EXPOSE 8080
USER app