jupyterrr / Dockerfile
beowcow's picture
Create Dockerfile
d50ab07 verified
raw
history blame contribute delete
198 Bytes
FROM jupyter/tensorflow-notebook:latest
# Enable passwordless sudo for user jovyan
USER root
RUN echo "jovyan ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
# Run as user jovyan
USER jovyan
USER root