container-images/gccgo/Makefile
Vincent Batts 57c47d0cdc dev: initial environment
fedora, centos and ubuntu

* fewer layers
* systemd-dev
* basic pieces for building docker everytime
* centos updates
* better automated build
2015-04-30 17:03:14 -04:00

14 lines
197 B
Makefile

NAME := docker.usersys/$(USER)/gccgo
DOCKER := $(shell which docker)
all: build
build: .build
.build: Dockerfile
$(DOCKER) build -t $(NAME) . && touch $@
clean:
rm -f .build $(wildcard *~)