Create Dockerfile

This commit is contained in:
Russell
2024-01-11 18:18:33 -07:00
committed by GitHub
parent 63aec67243
commit ba38ff27d2
+6
View File
@@ -0,0 +1,6 @@
FROM node:20
WORKDIR /usr/src/polaris
RUN npm install
COPY . .
EXPOSE 8080
CMD ["npm", "start"]