1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 12:29:07 +00:00

Initial commit

This commit is contained in:
Hongli Lai (Phusion)
2013-11-12 11:39:25 +01:00
commit 9661f84da9
16 changed files with 320 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
NAME = phusion/baseimage
VERSION = 0.9.0
.PHONY: all build tag_latest
all: build
build:
docker build -t $(NAME):$(VERSION) -rm image
tag_latest:
docker tag $(NAME):$(VERSION) $(NAME):latest