mirror of
https://gitea.com/docker/metadata-action.git
synced 2024-11-22 12:09:32 +01:00
7 lines
139 B
Text
7 lines
139 B
Text
|
# syntax=docker/dockerfile:1
|
||
|
FROM alpine
|
||
|
RUN apk add --no-cache coreutils jq
|
||
|
ARG BUILDINFO
|
||
|
RUN printenv BUILDINFO
|
||
|
RUN echo $BUILDINFO | jq
|