version bump to latest #3

Closed
liberate_on_chain wants to merge 3 commits from (deleted):develop into develop
No description provided.
Member

Please also update the file docker/my-dojo/.env to increment the version values accordingly for:

  • DOJO_FULCRUM_VERSION_TAG
  • DOJO_ELECTRS_VERSION_TAG
Please also update the file docker/my-dojo/.env to increment the version values accordingly for: - DOJO_FULCRUM_VERSION_TAG - DOJO_ELECTRS_VERSION_TAG
Member

The same changes are also pending in #4

PR owners are to determine together which changes of these should be pushed in which PR (if necessary: also in which order these PR's are to be merged).

The same changes are also pending in http://2l2o5umijiwxjioxwpsvwxe6pr75tj7r5rggnl5ze256guwvtee3kpqd.onion/Ronin/dojo/pulls/4 PR owners are to determine together which changes of these should be pushed in which PR (if necessary: also in which order these PR's are to be merged).
First-time contributor

container eletrs can be update to bookworm, with this works fine to me

FROM rust:1.86.0-slim-bookworm AS builder

ENV ELECTRS_VERSION 0.10.9
ENV ELECTRS_URL https://github.com/romanz/electrs/archive
ENV ELECTRS_SHA256 d8990bf530f886e6426f9f599894f6e8065d11b90394e76e63d709a6b3765313

RUN apt-get update && \
    apt-get install -y clang cmake wget libsnappy-dev && \
    rm -rf /var/lib/apt/lists/*

RUN set -ex && \
    mkdir /tmp/electrs && \
    cd /tmp/electrs && \
    wget -qO electrs.tar.gz "$ELECTRS_URL/v$ELECTRS_VERSION.tar.gz" && \
    echo "$ELECTRS_SHA256  electrs.tar.gz" | sha256sum -c - && \
    tar -xzf electrs.tar.gz --strip-components=1 && \
    rm electrs.tar.gz

RUN cd /tmp/electrs && \
    cargo install --locked --path .

FROM debian:bookworm-slim

ENV ELECTRS_HOME /home/electrs
ARG ELECTRS_LINUX_UID
ARG ELECTRS_LINUX_GID

COPY --from=builder /usr/local/cargo/bin/electrs /usr/bin/electrs

RUN apt-get update && \
    addgroup --system --gid ${ELECTRS_LINUX_GID} electrs && \
    adduser --system --ingroup electrs --uid ${ELECTRS_LINUX_UID} electrs && \
    rm -rf /var/lib/apt/lists/*

RUN mkdir -p "$ELECTRS_HOME/electrs" "$ELECTRS_HOME/db" && \
    chown -h electrs:electrs "$ELECTRS_HOME/electrs" "$ELECTRS_HOME/db"

COPY ./restart.sh /restart.sh
RUN chown electrs:electrs /restart.sh && chmod 755 /restart.sh

COPY ./electrs.toml /electrs.toml
RUN chown electrs:electrs /electrs.toml && chmod 644 /electrs.toml

USER electrs

EXPOSE 50001
STOPSIGNAL SIGINT

container eletrs can be update to bookworm, with this works fine to me ``` FROM rust:1.86.0-slim-bookworm AS builder ENV ELECTRS_VERSION 0.10.9 ENV ELECTRS_URL https://github.com/romanz/electrs/archive ENV ELECTRS_SHA256 d8990bf530f886e6426f9f599894f6e8065d11b90394e76e63d709a6b3765313 RUN apt-get update && \ apt-get install -y clang cmake wget libsnappy-dev && \ rm -rf /var/lib/apt/lists/* RUN set -ex && \ mkdir /tmp/electrs && \ cd /tmp/electrs && \ wget -qO electrs.tar.gz "$ELECTRS_URL/v$ELECTRS_VERSION.tar.gz" && \ echo "$ELECTRS_SHA256 electrs.tar.gz" | sha256sum -c - && \ tar -xzf electrs.tar.gz --strip-components=1 && \ rm electrs.tar.gz RUN cd /tmp/electrs && \ cargo install --locked --path . FROM debian:bookworm-slim ENV ELECTRS_HOME /home/electrs ARG ELECTRS_LINUX_UID ARG ELECTRS_LINUX_GID COPY --from=builder /usr/local/cargo/bin/electrs /usr/bin/electrs RUN apt-get update && \ addgroup --system --gid ${ELECTRS_LINUX_GID} electrs && \ adduser --system --ingroup electrs --uid ${ELECTRS_LINUX_UID} electrs && \ rm -rf /var/lib/apt/lists/* RUN mkdir -p "$ELECTRS_HOME/electrs" "$ELECTRS_HOME/db" && \ chown -h electrs:electrs "$ELECTRS_HOME/electrs" "$ELECTRS_HOME/db" COPY ./restart.sh /restart.sh RUN chown electrs:electrs /restart.sh && chmod 755 /restart.sh COPY ./electrs.toml /electrs.toml RUN chown electrs:electrs /electrs.toml && chmod 644 /electrs.toml USER electrs EXPOSE 50001 STOPSIGNAL SIGINT ```
Author
Owner

The same changes are also pending in #4

PR owners are to determine together which changes of these should be pushed in which PR (if necessary: also in which order these PR's are to be merged).

it makes sense to go with dojocoder's changes instead of these, I will go ahead with a close now

> The same changes are also pending in http://2l2o5umijiwxjioxwpsvwxe6pr75tj7r5rggnl5ze256guwvtee3kpqd.onion/Ronin/dojo/pulls/4 > > PR owners are to determine together which changes of these should be pushed in which PR (if necessary: also in which order these PR's are to be merged). it makes sense to go with dojocoder's changes instead of these, I will go ahead with a close now
Commenting is not possible because the repository is archived.
No reviewers
No labels
No milestone
No project
No assignees
3 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
Ronin/dojo!3
No description provided.