canaille-globuzma/demo/Dockerfile-client

14 lines
196 B
Text
Raw Permalink Normal View History

FROM python:slim
RUN \
apt update && \
apt -y upgrade
RUN pip install \
2022-05-13 14:47:48 +00:00
"flask<3" \
"authlib<2" \
requests
WORKDIR /opt/client
ENTRYPOINT ["flask", "run", "--host=0.0.0.0"]