FROM debian:buster ENV UID="" ENV XDG_RUNTIME_DIR="" ENV USER="" ENV DISPLAY="" COPY docker-entrypoint.sh / RUN chmod +x /docker-entrypoint.sh #RUN apt-get update && apt-get install -y jupyter-notebook jupyter-nbconvert patchutils bsdiff bsdmainutils cmake sudo tmux RUN apt-get update && apt-get install -y patchutils bsdiff bsdmainutils cmake sudo tmux build-essential python3-pip RUN apt-get install -y python3-cffi RUN pip3 install nbconvert notebook papermill ipykernel jupyter-c-kernel RUN install_c_kernel EXPOSE 8888 ENTRYPOINT [ "/docker-entrypoint.sh" ] CMD [ ]