Commit 9157d3a5 authored by Peter Parente's avatar Peter Parente

Simple Makefile for building ubuntu fix image

(c) Copyright IBM Corp. 2016
parent f9c1082c
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
.PHONY: build help release
REPO:=jupyter/ubuntu_14_04_locale_fix:latest
help:
@echo 'make build release'
@echo 'See https://github.com/jupyter/docker-stacks/pull/108'
build: DARGS?=
build:
docker build $(DARGS) --rm --force-rm -t $(REPO):latest .
release:
docker push $(REPO):latest
The Dockerfile in this folder serves as a base image for the `jupyter/notebook` image which comes from the master branch of the https://github.com/jupyter/notebook project. It's not used in the stacks here. See https://github.com/jupyter/docker-stacks/pull/108 for why it exists.
The Dockerfile in this folder serves as a base image for the `jupyter/notebook` image which comes from the master branch of https://github.com/jupyter/notebook. It's not used in the stacks here. See https://github.com/jupyter/docker-stacks/pull/108 for why it exists.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment