mirror of
https://github.com/yanhao98/composite-actions.git
synced 2025-07-13 06:40:49 +08:00
13 lines
128 B
Docker
13 lines
128 B
Docker
# syntax=docker/dockerfile:1.14-labs
|
|
FROM alpine:latest
|
|
|
|
ARG SHA=unspecified
|
|
ENV SHA=$SHA
|
|
|
|
COPY <<EOF /root/sha.txt
|
|
$SHA
|
|
EOF
|
|
|
|
|
|
|