add Dockerfile and Makefile
This commit is contained in:
parent
fde1097851
commit
df800efc90
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM golang:latest AS build
|
||||||
|
WORKDIR /src
|
||||||
|
COPY . .
|
||||||
|
RUN CGO_ENABLED=0 go build ./cmd/bb
|
||||||
|
|
||||||
|
FROM scratch AS bin
|
||||||
|
COPY --from=build /src/bb /
|
8
Makefile
Normal file
8
Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
DOCKER_BUILDKIT=1
|
||||||
|
docker build --target bin --output bin/ .
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm bin/bb
|
Loading…
x
Reference in New Issue
Block a user