You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
410 B

  1. FROM node:12-alpine AS builder
  2. LABEL maintainer="LessPass <contact@lesspass.com>"
  3. LABEL name="LessPass Frontend"
  4. WORKDIR /opt/frontend
  5. COPY package.json ./
  6. RUN yarn install
  7. RUN yarn global add gulp-cli
  8. COPY . /opt/frontend
  9. RUN yarn build
  10. FROM nginx:alpine
  11. COPY --from=builder /opt/frontend/build /usr/share/nginx/html
  12. COPY nginx.conf /etc/nginx/conf.d/default.conf
  13. EXPOSE 80
  14. CMD ["nginx", "-g", "daemon off;"]