blob: 43c048ddb3621f7bed8886f4f96400342ad9fd3e [file] [log] [blame]
# Container image that runs your code
FROM ferrarimarco/github-changelog-generator
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"]