mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 18:03:00 +01:00
43 lines
1.1 KiB
Docker
43 lines
1.1 KiB
Docker
FROM node:16.16.0-buster-slim AS builder
|
|
|
|
ARG commitHash
|
|
ENV DOCKER_COMMIT_HASH=${commitHash}
|
|
ENV CYPRESS_INSTALL_BINARY=0
|
|
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential rsync
|
|
RUN cp mempool-frontend-config.sample.json mempool-frontend-config.json
|
|
RUN npm install --omit=dev --omit=optional
|
|
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.17.8-alpine
|
|
|
|
WORKDIR /patch
|
|
|
|
COPY --from=builder /build/entrypoint.sh .
|
|
COPY --from=builder /build/wait-for .
|
|
COPY --from=builder /build/dist/mempool /var/www/mempool
|
|
COPY --from=builder /build/nginx.conf /etc/nginx/
|
|
COPY --from=builder /build/nginx-mempool.conf /etc/nginx/conf.d/
|
|
|
|
RUN chmod +x /patch/entrypoint.sh
|
|
RUN chmod +x /patch/wait-for
|
|
|
|
RUN chown -R 1000:1000 /patch && chmod -R 755 /patch && \
|
|
chown -R 1000:1000 /var/cache/nginx && \
|
|
chown -R 1000:1000 /var/log/nginx && \
|
|
chown -R 1000:1000 /etc/nginx/nginx.conf && \
|
|
chown -R 1000:1000 /etc/nginx/conf.d && \
|
|
chown -R 1000:1000 /var/www/mempool
|
|
|
|
RUN touch /var/run/nginx.pid && \
|
|
chown -R 1000:1000 /var/run/nginx.pid
|
|
|
|
USER 1000
|
|
|
|
ENTRYPOINT ["/patch/entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"]
|