Skip to content

Instantly share code, notes, and snippets.

@gokcesurenkok
Created March 30, 2022 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gokcesurenkok/c0450dfa8ee503da36cc23bcc9d73c32 to your computer and use it in GitHub Desktop.
Save gokcesurenkok/c0450dfa8ee503da36cc23bcc9d73c32 to your computer and use it in GitHub Desktop.
FROM golang AS stage0
...
RUN go build -o /main main.go
FROM gcc:latest AS stage1
...
RUN gcc -o /hello hello.c
FROM debian AS stage2
COPY --from=stage0 /main /
COPY --from=stage1 /hello /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment