forked from RubyData/docker-stacks
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set base image to use quay.io image as dockerhub image is no longer u…
…pdated
- Loading branch information
Showing
1 changed file
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG BASE_IMAGE_TAG=f3079808ca8c | ||
FROM jupyter/datascience-notebook:$BASE_IMAGE_TAG | ||
ARG BASE_IMAGE_TAG=latest | ||
FROM quay.io/jupyter/datascience-notebook:$BASE_IMAGE_TAG | ||
|
||
LABEL maintainer="Robert Pannick <[email protected]>" | ||
LABEL contributor="Kenta Murata <[email protected]>" | ||
|
@@ -136,9 +136,6 @@ RUN echo "gem: --user-install" >> /etc/gemrc && \ | |
|
||
USER $NB_UID | ||
|
||
RUN conda update -n base -c conda-forge conda -y && \ | ||
conda install -c conda-forge jupyterlab jupyterlab-git -y | ||
|
||
RUN echo "[[ -f ~/.env ]] && source ~/.env" >> $HOME/.bashrc && \ | ||
echo "gem: --user-install" >> $HOME/.gemrc | ||
|
||
|