Initial commit

This commit is contained in:
2026-07-11 12:26:31 +00:00
commit e8608e3719
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"]