diff --git a/Dockerfile b/Dockerfile index 99ec006..b925666 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM node:22.15 as builder +FROM dhi.io/node:22.15-dev as builder WORKDIR /app COPY . /app RUN npm install -FROM node:22.15 +FROM dhi.io/node:22.15 COPY --from=builder /app . EXPOSE 9595 -CMD [ "node", "index.js" ] \ No newline at end of file +ENTRYPOINT [ "node" ] +CMD [ "index.js" ] \ No newline at end of file