Re-Added dockerfile

This commit is contained in:
Sohrab Behdani
2024-12-03 12:18:13 +03:30
committed by GitHub
parent fb4fcd76a8
commit 4ff26ba25e

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20.10.0
WORKDIR /app
COPY . .
RUN npm install --force
RUN npm run build
EXPOSE 6080
CMD ["npm", "run", "start"]