Created
September 2, 2024 04:01
-
-
Save iksaku/c4bde1c82c2c3473fc8214990a1f8c0b 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
FROM alpine AS base | |
CMD ["echo", "'Base stage'"] | |
############################################# | |
FROM base AS development | |
CMD ["echo", "'Development stage'"] | |
############################################# | |
FROM base AS production | |
CMD ["echo", "'Production stage'"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment