mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-05 19:43:47 +00:00
18 lines
358 B
Docker
18 lines
358 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache git yarn jq
|
|
|
|
RUN git clone https://github.com/primevprotocol/hyperlane-ui.git
|
|
WORKDIR /hyperlane-ui
|
|
RUN git checkout ff1586ed9cad6eeddba2cebc5f9b7828c74f25d1
|
|
|
|
RUN yarn
|
|
|
|
ARG NEXT_PUBLIC_WALLET_CONNECT_ID
|
|
|
|
RUN yarn build
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|