mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-05 03:20:28 +00:00
- add custom Dockerfile - use GitHub actions env vars as docker build args - remove .gh from Makefile and Dockerfile in destination project
18 lines
523 B
Docker
18 lines
523 B
Docker
FROM docker:stable
|
|
|
|
LABEL "name"="Docker tag and push action"
|
|
LABEL "maintainer"="Stefan Prodan <support@weave.works>"
|
|
LABEL "version"="1.0.0"
|
|
|
|
LABEL "com.github.actions.icon"="package"
|
|
LABEL "com.github.actions.color"="green"
|
|
LABEL "com.github.actions.name"="Docker Publish"
|
|
LABEL "com.github.actions.description"="This is an Action to run docker tag and push commands."
|
|
|
|
RUN apk add --no-cache ca-certificates bash git curl \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|