add label for dockerfile and basic readme text

This commit is contained in:
Thomas Stringer 2022-03-24 20:43:13 -04:00
parent 80c1360591
commit 6a4f349166
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ WORKDIR /var/app
RUN CGO_ENABLED=0 go build -o app .
FROM alpine:3.14
LABEL org.opencontainers.image.source https://github.com/trstringer/manual-approval
RUN apk update && apk add ca-certificates
COPY --from=builder /var/app/app /var/app/app
CMD ["/var/app/app"]

View file

@ -0,0 +1,3 @@
# GitHub Actions Manual Workflow Approval
Add this action to your workflow to get manual approval to continue.