container-action/Dockerfile
dependabot[bot] b44f89bef1
Bump alpine from 3.18 to 3.19
Bumps alpine from 3.18 to 3.19.

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-11 23:55:05 +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"]