Skip to content

Commit fba2a9d

Browse files
committed
distribute as a tiny docker image
Signed-off-by: Nicolas De Loof <[email protected]>
1 parent 7a04bd0 commit fba2a9d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
FROM go:1.5-onbuild
1+
FROM scratch
22

3-
ENTRYPOINT ["app"]
3+
COPY /docker-gc /docker-gc
4+
5+
ENTRYPOINT ["/docker-gc"]

build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o docker-gc .
3+
docker build -t ndeloof/docker-gc .

0 commit comments

Comments
 (0)