diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f72d048 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:20 +WORKDIR /usr/src/polaris +RUN npm install +COPY . . +EXPOSE 8080 +CMD ["npm", "start"]