Files
hello-world-docker-action/Dockerfile
dependabot[bot] 211fd2c11a Bump the docker-minor group with 1 update
Bumps the docker-minor group with 1 update: alpine.


---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-11 11:19:26 +00:00

12 lines
304 B
Docker

# Set the base image to use for subsequent instructions
FROM alpine:3.19
# Set the working directory inside the container
WORKDIR /usr/src
# Copy any source file(s) required for the action
COPY entrypoint.sh .
# Configure the container to be run as an executable
ENTRYPOINT ["/usr/src/entrypoint.sh"]