10 lines
135 B
Docker
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" ]
|