We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb2cbe commit 8706bfeCopy full SHA for 8706bfe
Dockerfile
@@ -13,8 +13,8 @@ COPY . /src
13
WORKDIR /src
14
ENV CGO_ENABLED=0
15
RUN go mod download
16
-RUN go build -o /assets/out ./cmd/out
17
-RUN go build -o /assets/in ./cmd/in
+RUN go build -o /assets/out ./cmd/out
+RUN go build -o /assets/in ./cmd/in
18
RUN go build -o /assets/check ./cmd/check
19
RUN set -e; for pkg in $(go list ./...); do \
20
go test -o "/tests/$(basename $pkg).test" -c $pkg; \
cmd/out/main.go
@@ -1,4 +1,4 @@
1
-package out
+package main
2
3
import "log"
4
0 commit comments