Skip to content

Commit

Permalink
fix BASE_IMAGE arg in onbuild
Browse files Browse the repository at this point in the history
BASE_IMAGE is a single arg, not two separate ones
  • Loading branch information
minrk committed Dec 3, 2019
1 parent 5502367 commit ca81af2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions onbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
#
# Derivative images must have jupyterhub_config.py next to the Dockerfile.

ARG BASE_IMAGE=jupyterhub/jupyterhub
ARG BASE_IMAGE_TAG=latest
FROM "${BASE_IMAGE}:${BASE_IMAGE_TAG}"
ARG BASE_IMAGE=jupyterhub/jupyterhub:latest
FROM $BASE_IMAGE

ONBUILD COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py

Expand Down

0 comments on commit ca81af2

Please sign in to comment.