dockerfile
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
# develop stage
|
||||
FROM node:14.21.2-alpine as develop-stage
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install -g npm@latest
|
||||
RUN npm i -g @quasar/cli
|
||||
COPY . .
|
||||
|
||||
# build stage
|
||||
FROM develop-stage as build-stage
|
||||
RUN npm i
|
||||
RUN quasar build
|
||||
|
||||
# production stage
|
||||
FROM nginx:1.17.5-alpine as production-stage
|
||||
COPY --from=build-stage /app/dist/spa /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user