Skip to content

Instantly share code, notes, and snippets.

@iksaku
Created September 2, 2024 04:01
Show Gist options
  • Save iksaku/c4bde1c82c2c3473fc8214990a1f8c0b to your computer and use it in GitHub Desktop.
Save iksaku/c4bde1c82c2c3473fc8214990a1f8c0b to your computer and use it in GitHub Desktop.
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