Last active
February 12, 2021 13:54
-
-
Save unfor19/350a252ed4867e575faee0c92610efab to your computer and use it in GitHub Desktop.
global-args-bad-dockerfile
This file contains 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
# BAD - 3.9.1 is hardcoded | |
FROM python:3.9.1-slim as build | |
# Build stage commands | |
FROM python:3.9.1-slim as app | |
# App stage commands | |
ENTRYPOINT ["app"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment