Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
chore(deps): Use the latest base image to build the workspaces (#24)
Browse files Browse the repository at this point in the history
* Change the Dockerfiles to use the latest base image
* Change the default url from /lab to /tree
  • Loading branch information
netoisc authored Aug 13, 2020
1 parent b094cc9 commit 039c4a8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion base-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG JHUB_HASH_COMMIT=f3c3225124f1c5d9acb2503ec4d9c35a140f6a78

ENV JHUB_CONFIG=$JHUB_CONFIG
ENV JHUB_HASH_COMMIT=$JHUB_HASH_COMMIT
ENV JUPYTER_ENABLE_LAB=yes
ENV JUPYTER_ENABLE_LAB=no
ENV RESTARTABLE=yes

USER root
Expand Down
2 changes: 1 addition & 1 deletion base-notebook/jupyter_notebook_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# load base config
load_subconfig('/etc/jupyter/jupyter_notebook_config_base.py')

c.NotebookApp.default_url = '/lab'
c.NotebookApp.default_url = '/tree'
2 changes: 1 addition & 1 deletion grader-notebook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=illumidesk/base-notebook:v0.1.5
ARG BASE_IMAGE=illumidesk/base-notebook:latest
FROM $BASE_IMAGE

ARG USER_ROLE=Grader
Expand Down
2 changes: 1 addition & 1 deletion instructor-notebook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=illumidesk/base-notebook:v0.1.5
ARG BASE_IMAGE=illumidesk/base-notebook:latest
FROM $BASE_IMAGE

ARG USER_ROLE=Instructor
Expand Down
2 changes: 1 addition & 1 deletion learner-notebook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=illumidesk/base-notebook:v0.1.5
ARG BASE_IMAGE=illumidesk/base-notebook:latest
FROM $BASE_IMAGE

ARG USER_ROLE=Learner
Expand Down
2 changes: 1 addition & 1 deletion rstudio/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM illumidesk/base-notebook:v0.1.5 AS base
FROM illumidesk/base-notebook:latest AS base

FROM illumidesk/r-conda:latest

Expand Down
2 changes: 1 addition & 1 deletion theia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN yarn \
RUN npm run build-deb

# transfer debian package to a new clean image and install theia
FROM illumidesk/base-notebook:v0.1.5
FROM illumidesk/base-notebook:latest

ENV NODE_OPTIONS="--max_old_space_size=4096"
ENV NODE_VERSION=10.21.0
Expand Down
2 changes: 1 addition & 1 deletion vscode/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=illumidesk/base-notebook:v0.1.5
ARG BASE_IMAGE=illumidesk/base-notebook:latest
FROM $BASE_IMAGE

USER root
Expand Down

0 comments on commit 039c4a8

Please sign in to comment.