diff --git a/docker/Dockerfile b/docker/Dockerfile index aba6de879ff1..32e17c0caa01 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -41,11 +41,11 @@ RUN apk add --update nodejs npm RUN mix compile && npm install npm@latest # Add blockscout npm deps -RUN cd apps/block_scout_web/assets/ && \ - npm install && \ - npm run deploy && \ - cd /app/apps/explorer/ && \ - npm install +#RUN cd apps/block_scout_web/assets/ && \ +# npm install && \ +# npm run deploy && \ +# cd /app/apps/explorer/ && \ +# npm install RUN export "CFLAGS=-I/usr/local/include -L/usr/local/lib" && cd deps/ex_secp256k1 && mix deps.get && mix compile RUN mix phx.digest @@ -67,6 +67,6 @@ RUN apk --no-cache --update add jq curl WORKDIR /app COPY --from=builder /opt/release/blockscout . -COPY --from=builder /app/apps/explorer/node_modules ./node_modules +#COPY --from=builder /app/apps/explorer/node_modules ./node_modules COPY --from=builder /app/config/config_helper.exs ./config/config_helper.exs COPY --from=builder /app/config/config_helper.exs /app/releases/${RELEASE_VERSION}/config_helper.exs diff --git a/docker/build-arthera-image.sh b/docker/build-arthera-image.sh index ca878dffe13b..3e771f621788 100755 --- a/docker/build-arthera-image.sh +++ b/docker/build-arthera-image.sh @@ -1,6 +1,6 @@ #!/bin/bash -export RELEASE_VERSION=5.2.3-beta +export RELEASE_VERSION=5.2.3 export BS_CONTAINER_IMAGE=arthera/blockscout docker build -f ./Dockerfile -t "$BS_CONTAINER_IMAGE:$RELEASE_VERSION" \