Added dockerfile

This commit is contained in:
2022-09-05 21:12:07 -04:00
parent ca005a735f
commit af0adc035c
3 changed files with 10 additions and 2 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node AS build
WORKDIR /build
COPY . .
RUN npm install && npm run build
EXPOSE 8080
ENTRYPOINT [ "npm", "run", "serve"]