chore(build): rename binary to gosick

This commit is contained in:
Micheal Wilkinson
2026-03-19 16:33:45 +00:00
parent 1d26594010
commit 0dfacc31d4
7 changed files with 10 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ COPY go.mod go.sum /workspace/
RUN go mod download
COPY . /workspace
RUN mkdir -p /workspace/dist && \
go build -o /workspace/dist/homesick-go ./cmd/homesick
go build -o /workspace/dist/gosick ./cmd/homesick
FROM alpine:3.21
@@ -16,6 +16,6 @@ RUN apk add --no-cache \
WORKDIR /workspace
COPY . /workspace
COPY --from=builder /workspace/dist/homesick-go /workspace/dist/homesick-go
COPY --from=builder /workspace/dist/gosick /workspace/dist/gosick
ENTRYPOINT ["/workspace/test/behavior/behavior_suite.sh"]