mirror of
https://github.com/stefanzweifel/changelog-updater-action.git
synced 2026-02-20 22:47:26 +08:00
9 lines
339 B
Docker
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"]
|