dev: initial environment
fedora, centos and ubuntu * fewer layers * systemd-dev * basic pieces for building docker everytime * centos updates * better automated build
This commit is contained in:
parent
dd61e1eb1a
commit
57c47d0cdc
12 changed files with 288 additions and 0 deletions
14
gccgo/Makefile
Normal file
14
gccgo/Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
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 *~)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue