Files
actions/curl/Dockerfile
Andreas Heim 868876ac08 Changing icons
2019-06-17 12:26:54 -04:00

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"]