mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 22:45:39 +08:00
14 lines
367 B
Docker
14 lines
367 B
Docker
FROM alpine:3.8
|
|
|
|
LABEL "name"="curl"
|
|
LABEL "maintainer"="Unacast <developers+github@unacast.com>"
|
|
LABEL "version"="1.0.0"
|
|
|
|
LABEL "com.github.actions.name"="curl"
|
|
LABEL "com.github.actions.description"="run curl"
|
|
LABEL "com.github.actions.icon"="terminal"
|
|
LABEL "com.github.actions.color"="gray-dark"
|
|
|
|
RUN apk add --no-cache --update curl
|
|
ENTRYPOINT ["/usr/bin/curl"]
|