2023-09-01 14:10:18 -04:00
|
|
|
# Set the base image to use for subsequent instructions
|
2025-12-08 23:05:49 +00:00
|
|
|
FROM alpine:3.23
|
2019-08-03 21:55:35 -04:00
|
|
|
|
2023-09-01 14:10:18 -04:00
|
|
|
# Set the working directory inside the container
|
|
|
|
|
WORKDIR /usr/src
|
2019-08-03 21:55:35 -04:00
|
|
|
|
2023-09-01 14:10:18 -04:00
|
|
|
# Copy any source file(s) required for the action
|
|
|
|
|
COPY entrypoint.sh .
|
2019-08-03 21:55:35 -04:00
|
|
|
|
2023-09-01 14:10:18 -04:00
|
|
|
# Configure the container to be run as an executable
|
|
|
|
|
ENTRYPOINT ["/usr/src/entrypoint.sh"]
|