Skip to content
Snippets Groups Projects
Commit 127617bc authored by Christian Elberfeld's avatar Christian Elberfeld
Browse files

use debian packages

parent d336f1fa
No related branches found
No related tags found
No related merge requests found
FROM debian:bullseye
FROM debian:bookworm
# Python Packages
RUN apt-get update && apt-get install -y \
RUN set -x && \
apt update && \
apt install -y --no-install-recommends \
python3 \
python3-pip
python3-pip \
python3-flask \
python3-gunicorn \
python3-jinja2 \
apt -qq clean
# pip Packages
RUN pip3 install \
flask==1.0.2 \
gunicorn \
--upgrade
# start Script
COPY entrypoint_dev.sh /opt/entrypoint_dev.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment