changelog-updater-action/Dockerfile
2021-08-14 12:13:15 +02:00

9 lines
339 B
Docker

# Container image that runs your code
FROM php:cli-alpine
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
COPY changelog-updater /changelog-updater
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]