We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9604e11 commit 077d4c3Copy full SHA for 077d4c3
Dockerfile
@@ -4,7 +4,8 @@ WORKDIR /qq
4
COPY . .
5
ENV CGO_ENABLED 0
6
RUN go mod download && go mod verify
7
-RUN apt update -y && apt install jq -y && make publish
+RUN make build
8
+RUN apt update -y && apt install jq -y && make test
9
10
FROM gcr.io/distroless/static:debug
11
Makefile
@@ -11,10 +11,6 @@ build:
test: build
12
./tests/test.sh
13
14
-publish:
15
- ./tests/test.sh
16
- go build -o bin/$(BINARY) $(SRC)
17
-
18
clean:
19
rm bin/$(BINARY)
20
0 commit comments