選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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