Initial commit

This commit is contained in:
2026-07-10 08:45:31 +00:00
commit 76a8f44003
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"]