Created
December 7, 2020 15:52
-
-
Save barrachri/c4f6627c1aa166a2cadca7c1e3f6c120 to your computer and use it in GitHub Desktop.
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
# ================ | |
# PRODUCTION IMAGE | |
# ================ | |
FROM YOUR-BASE-IMAGE | |
ARG GIT_HASH | |
ENV GIT_HASH ${GIT_HASH:-dev} | |
WORKDIR /src | |
COPY --from=builder /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/ | |
COPY --from=builder /usr/local/bin /usr/local/bin | |
COPY --from=builder /usr/local/src/ /usr/local/src/ | |
COPY . /src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment