Compare commits

..

2 Commits

Author SHA1 Message Date
96a7d3f29b Merge branch 'master' of git.hl.srp.life:srp/go-cross-build 2024-09-23 23:29:05 -04:00
07ba37211e blah 2024-09-23 23:28:41 -04:00

View File

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