yacd/Dockerfile

12 lines
392 B
Docker
Raw Normal View History

2019-11-06 22:29:04 +08:00
FROM node:alpine AS builder
WORKDIR /app
COPY . .
2020-08-29 04:58:46 +08:00
# Using yarn to install dependencies in CI will cause network timeout
# Refer to https://github.com/date-fns/date-fns/issues/1004
RUN yarn config set network-timeout 300000 && yarn && yarn run build
2019-11-06 22:29:04 +08:00
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY --from=builder /app/public /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]