Files
cleanup-release/Dockerfile
T
2026-07-11 12:26:31 +00:00

12 lines
206 B
Docker

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"]