🎉 First commit, from couchbase generator, basic changes
not tested / updated yet
This commit is contained in:
27
{{cookiecutter.project_slug}}/frontend/Dockerfile
Normal file
27
{{cookiecutter.project_slug}}/frontend/Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
# Stage 0, "build-stage", based on Node.js, to build and compile the frontend
|
||||
FROM tiangolo/node-frontend:10 as build-stage
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json /app/
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY ./ /app/
|
||||
|
||||
ARG FRONTEND_ENV=production
|
||||
|
||||
ENV VUE_APP_ENV=${FRONTEND_ENV}
|
||||
|
||||
# Comment out the next line to disable tests
|
||||
RUN npm run test:unit
|
||||
|
||||
RUN npm run build
|
||||
|
||||
|
||||
# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx
|
||||
FROM nginx:1.15
|
||||
|
||||
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
|
||||
|
||||
COPY --from=build-stage /nginx.conf /etc/nginx/conf.d/default.conf
|
Reference in New Issue
Block a user