diff --git a/Dockerfile b/Dockerfile index 3e3286b..6b275fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM node:18-alpine +WORKDIR build EXPOSE 3000 ENV NODE_ENV=production -RUN ["node", "build/index.js"] \ No newline at end of file +RUN cat index.js | node --input-type=module \ No newline at end of file