yacd/Dockerfile
2022-03-06 17:53:45 +08:00

17 lines
495 B
Docker

FROM --platform=$BUILDPLATFORM node:alpine AS builder
WORKDIR /app
COPY yarn.lock package.json .
RUN yarn config set network-timeout 300000 && yarn
COPY . .
RUN yarn build \
# remove source maps - people like small image
&& rm public/*.map || true
FROM --platform=$TARGETPLATFORM 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"]