Compare commits

..

No commits in common. "96a7d3f29b96a9fd36c49d311b37c7e6dafc12c4" and "532cf1773c367a1c0e6e49d8ebfb95c9b2742881" have entirely different histories.

View File

@ -8,5 +8,7 @@ COPY entrypoint.go /usr/bin/entrypoint.go
# change mode of the entrypoint file
RUN chmod +x /usr/bin/entrypoint.go
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /go-xbuild
# set entrypoint command
ENTRYPOINT [ "go", "run", "/usr/bin/entrypoint.go"]
ENTRYPOINT [ "/go-xbuild"]