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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"]