mirror of
https://github.com/agresdominik/dev-templates.git
synced 2026-04-21 18:05:49 +00:00
Base Templates
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
.PHONY ...
|
||||
|
||||
EXECUTABLE = cheatsh
|
||||
PACKAGES = ./src/.
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
@mkdir -p bin
|
||||
go build -o bin/$(EXECUTABLE) $(PACKAGES)
|
||||
|
||||
clean:
|
||||
rm -rf bin/
|
||||
|
||||
docker:
|
||||
docker build -t cheatsh-test .
|
||||
docker run -it --rm cheatsh-test /bin/sh
|
||||
Reference in New Issue
Block a user