Skip to content

Instantly share code, notes, and snippets.

@janw
Created February 19, 2023 12:23
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 janw/6ea4427c7261145c3a1c439eb69816a5 to your computer and use it in GitHub Desktop.
Save janw/6ea4427c7261145c3a1c439eb69816a5 to your computer and use it in GitHub Desktop.
copy from external
FROM upstream/image:v1.23.0 as img
FROM another/external-tool:latest as externaltool
FROM alpine:3
RUN important things
COPY --from img /img/bin/tool /bin/tool
COPY --from externaltool /bin/externaltool /bin/externaltool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment