HajTex_living_with_keycloak/docker/compose/check_users/Dockerfile

26 lines
532 B
Text
Raw Permalink Normal View History

2024-12-30 02:50:43 +01:00
FROM python:3.12.5
RUN apt-get update
RUN apt -y install mc
RUN apt -y install docker.io
RUN pip install pymongo
RUN pip install email_validator
RUN pip install flask
RUN pip install gunicorn
RUN pip install requests
RUN pip install BeautifulSoup4
RUN apt -y install bash
RUN pip install --upgrade pip
RUN pip install flask_wtf
RUN pip install wtforms
RUN pip install flask_recaptcha
RUN pip install Markup
RUN pip install captcha Pillow
RUN pip install argh
EXPOSE 80
ENTRYPOINT ["/bin/bash", "-c", "cd / && sleep infinity"]