FROM python:3.11 # WORKDIR /usr/src/app ENV GIT_SSL_NO_VERIFY=1 # Install net-tools for ifconfig RUN apt-get update && \ apt-get install -y net-tools && \ rm -rf /var/lib/apt/lists/* # Install any needed packages specified in requirements.txt RUN git clone https://gitlab1.ptb.de/digitaldynamicmeasurement/dsi-parser-frontend.git RUN pip install --no-cache-dir -r dsi-parser-frontend/requirements.txt EXPOSE 5020 CMD ["dsi-parser-frontend/startkBokehAndPrintIp.sh"] #CMD ["bokeh", "serve", "dsi-parser-frontend/", "--port", "5020", "--allow-websocket-origin", "*","--use-xheaders","--prefix","dsi-parser-frontend"]