FROM python:latest WORKDIR /data RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \ pip install --no-cache-dir -r /tmp/requirements.txt ### DIESE ZEILE EINFÜGEN ### COPY jupyter_server_config.json /root/.jupyter/ EXPOSE 8888 ENV NAME="Jupyter World" CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]