Last active
April 29, 2021 16:57
-
-
Save MridulS/4f10afe80ec3a1dc76270e7120ef127f 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 jupyter/base-notebook:hub-1.3.0 | |
ENV USER lol | |
ENV HOME /home/lol | |
USER root | |
RUN deluser jovyan | |
RUN adduser --disabled-password \ | |
--gecos "Default user" \ | |
--uid 1000 \ | |
lol | |
WORKDIR ${HOME} | |
USER lol |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment