Last active
January 25, 2025 23:10
-
-
Save christopherbauer/1a40a43b66f3f40983f76f147745952f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.11.9-bookworm | |
LABEL MAINTAINER="Christopher Bauer" | |
RUN apt-get update \ | |
&& apt-get -y install build-essential wkhtmltopdf \ | |
&& apt-get clean | |
WORKDIR /var/www/.notebooks | |
COPY . . | |
RUN pip install jupyterlab notebook | |
# CMD [ "tail", "-f", "/dev/null" ] | |
CMD [ "jupyter", "notebook", "--port", "8888", "--ip", "0.0.0.0", "--no-browser", "--allow-root"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment