Last active
March 21, 2024 09:33
-
-
Save PurpleBooth/ec81bad0a7b56ac767e0da09840f835a to your computer and use it in GitHub Desktop.
Create a static binary in go and put it in a from scratch docker container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.9 | |
WORKDIR /go/src/github.com/purplebooth/example | |
COPY . . | |
RUN go build -ldflags "-linkmode external -extldflags -static" -a main.go | |
FROM scratch | |
COPY --from=0 /go/src/github.com/purplebooth/example/main /main | |
CMD ["/main"] |
@ChristianKniep wrote:
Just stole this nice little dockerfile for a pet-project. Thanks for putting it out.
Btw: you do not need the firstRUN
to create the directory.WORKDIR
will do that for you if it does not exist. :)
Ooh! Didn't know that! Updated 👍
Got this error when trying to run the container. Any idea? docker: Error response from daemon: OCI runtime create failed: container_linux.go:345: starting container process caused "exec: \"./main\": permission denied": unknown.
Does main exist? The example copies to /main
from the build container rather than ./main
Here's another similar example
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is exactly what I needed. Thank you!