2023-12-08 10:55:58 -05:00
|
|
|
# Set the base image to use for subsequent instructions.
|
2025-06-02 12:34:01 +00:00
|
|
|
FROM alpine:3.22
|
2023-12-08 10:33:30 -05:00
|
|
|
|
2023-12-08 10:55:58 -05:00
|
|
|
# Set the working directory inside the container.
|
2023-12-08 10:33:30 -05:00
|
|
|
WORKDIR /usr/src
|
|
|
|
|
|
2023-12-08 10:55:58 -05:00
|
|
|
# Copy any source file(s) required for the action.
|
2023-12-08 10:33:30 -05:00
|
|
|
COPY entrypoint.sh .
|
|
|
|
|
|
2023-12-08 10:55:58 -05:00
|
|
|
# Configure the container to be run as an executable.
|
2023-12-08 10:33:30 -05:00
|
|
|
ENTRYPOINT ["/usr/src/entrypoint.sh"]
|