yacd/Dockerfile

18 lines
547 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 build \
# remove source maps - people like small image
&& rm public/*.map || true
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
ENV YACD_DEFAULT_BACKEND "http://127.0.0.1:9090"
ADD docker-entrypoint.sh /
CMD ["/docker-entrypoint.sh"]