Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Dockerfile 410 B

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