blob: 327e5b1ca785a9c54a97f0d883f814fb1b913d19 [file] [log] [blame]
# Container image that runs your code
FROM alpine:3
RUN apk add --no-cache curl jq git bash
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY *.sh /
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]