mirror of
https://code.forgejo.org/docker/metadata-action.git
synced 2025-09-16 17:56:56 +00: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
|