Browse Source

fix: construction error under node18

dev
Dnomd343 2 years ago
parent
commit
831ce3e4d7
  1. 5
      Dockerfile

5
Dockerfile

@ -34,12 +34,13 @@ RUN apk add git
ENV ADGUARD="0.107.25" ENV ADGUARD="0.107.25"
RUN git clone https://github.com/AdguardTeam/AdGuardHome.git -b v${ADGUARD} --depth=1 RUN git clone https://github.com/AdguardTeam/AdGuardHome.git -b v${ADGUARD} --depth=1
FROM alpine:3.16 AS adguard-web FROM ${ALPINE} AS adguard-web
RUN apk add make npm RUN apk add make npm
COPY --from=adguard-src /AdGuardHome/ /AdGuardHome/ COPY --from=adguard-src /AdGuardHome/ /AdGuardHome/
WORKDIR /AdGuardHome/ WORKDIR /AdGuardHome/
RUN make js-deps RUN make js-deps
RUN make js-build # TODO: for node18, remove the OpenSSL compatibility option after AdGuardHome project upgrade
RUN env NODE_OPTIONS="--openssl-legacy-provider" make js-build
RUN mv ./build/static/ /tmp/ RUN mv ./build/static/ /tmp/
FROM ${GOLANG} AS adguard FROM ${GOLANG} AS adguard

Loading…
Cancel
Save