Add Dockerfile

This commit is contained in:
2025-09-08 11:58:56 +00:00
parent 3c8e0e12eb
commit f26e61c351

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /usr/src/app
RUN apk add --no-cache git bash
COPY entrypoint.sh /usr/src/app/entrypoint.sh
RUN chmod +x /usr/src/app/entrypoint.sh
EXPOSE 3000
ENTRYPOINT ["/usr/src/app/entrypoint.sh"]