Adding a dedicated curl image

This commit is contained in:
Andreas Heim
2019-06-14 14:37:35 -04:00
parent d22797befd
commit 55a8230882
2 changed files with 31 additions and 0 deletions

13
curl/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"="black"
RUN apk add --no-cache --update curl
ENTRYPOINT ["/usr/bin/curl"]

18
curl/Makefile Normal file
View File

@@ -0,0 +1,18 @@
include ../docker.mk
include ../help.mk
include ../shell.mk
.PHONY: clean
clean: ## Clean up after the build process.
.PHONY: lint
lint: docker-lint ## Lint all of the files for this Action.
.PHONY: build
build: docker-build ## Build this Action.
.PHONY: test
test: ## Test the components of this Action.
.PHONY: publish
publish: docker-publish ## Publish this Action.