Skip to content

Commit 8706bfe

Browse files
committed
fix out binary
Signed-off-by: Taylor Silva <dev@taydev.net>
1 parent fcb2cbe commit 8706bfe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ COPY . /src
1313
WORKDIR /src
1414
ENV CGO_ENABLED=0
1515
RUN go mod download
16-
RUN go build -o /assets/out ./cmd/out
17-
RUN go build -o /assets/in ./cmd/in
16+
RUN go build -o /assets/out ./cmd/out
17+
RUN go build -o /assets/in ./cmd/in
1818
RUN go build -o /assets/check ./cmd/check
1919
RUN set -e; for pkg in $(go list ./...); do \
2020
go test -o "/tests/$(basename $pkg).test" -c $pkg; \

cmd/out/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package out
1+
package main
22

33
import "log"
44

0 commit comments

Comments
 (0)