diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ffe9583 --- /dev/null +++ b/Dockerfile @@ -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"]