Last active
September 28, 2022 09:53
-
-
Save BigAlRender/4a83df9a9561e5d04a63b689d287a30c to your computer and use it in GitHub Desktop.
Render Environment Variables in Docker Build
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
# syntax = docker/dockerfile:1.2 | |
FROM ubuntu | |
ARG DB_URL | |
RUN echo $DB_URL | |
RUN printenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment