Last active
June 6, 2023 06:12
-
-
Save maxnasonov/bede4af0ebb0806cc6eb65441cae936d to your computer and use it in GitHub Desktop.
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
version: v1.1.0 | |
steps: | |
- build: -t $Registry/mnasonov -f abc.Dockerfile . | |
env: | |
- ABC={{.Values.abc}} | |
- push: | |
- $Registry/mnasonov:latest |
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
FROM crsvinfra.azurecr.io/svopsbot:latest | |
ARG ABC | |
RUN echo $ABC > /abc | |
RUN echo xxx >> /abc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment