Files
2026-04-03 15:45:17 +02:00

10 lines
135 B
Docker

FROM node:25-alpine3.22
WORKDIR /root
COPY ./entrypoint.sh .
RUN chmod +x /root/entrypoint.sh
ENTRYPOINT [ "/root/entrypoint.sh" ]