Initial commit

This commit is contained in:
Nick Alteen
2023-12-08 10:33:30 -05:00
commit 46755db8f3
17 changed files with 616 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Set the base image to use for subsequent instructions
FROM alpine:3.18
# 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"]