Initial commit

This commit is contained in:
2026-08-06 17:02:53 +00:00
commit 310cf493ef
8 changed files with 502 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
ARG NODE_VERSION=alpine
FROM node:${NODE_VERSION}
WORKDIR /action
COPY src/ /action/src/
COPY entrypoint.sh /action/entrypoint.sh
RUN chmod +x /action/entrypoint.sh
ENTRYPOINT ["/action/entrypoint.sh"]