Skip to content

Commit

Permalink
dev(regtest): switch to python:3.11-slim-bookworm as base image
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Oct 8, 2023
1 parent 9834c73 commit 2c56940
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM debian:bullseye-20220801-slim
FROM python:3.11-slim-bookworm

RUN apt-get update \
&& apt-get install -qq --no-install-recommends gnupg tini procps vim git iproute2 supervisor \
# joinmarket dependencies
curl build-essential automake pkg-config libtool python3-dev python3-venv python3-pip python3-setuptools libltdl-dev \
curl build-essential automake pkg-config libtool libltdl-dev \
tor \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -14,7 +14,7 @@ ENV REPO_REF master
WORKDIR /src
RUN git clone "$REPO" . --depth=10 --branch "$REPO_BRANCH" && git checkout "$REPO_REF"

RUN ./install.sh --docker-install --disable-secp-check --without-qt
RUN ./install.sh --docker-install --disable-os-deps-check --disable-secp-check --without-qt

ENV DATADIR /root/.joinmarket
ENV CONFIG ${DATADIR}/joinmarket.cfg
Expand Down
6 changes: 3 additions & 3 deletions docker/regtest/dockerfile-deps/joinmarket/latest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM debian:bullseye-20220801-slim
FROM python:3.11-slim-bookworm

RUN apt-get update \
&& apt-get install -qq --no-install-recommends gnupg tini procps vim git iproute2 supervisor \
# joinmarket dependencies
curl build-essential automake pkg-config libtool python3-dev python3-venv python3-pip python3-setuptools libltdl-dev \
curl build-essential automake pkg-config libtool libltdl-dev \
tor \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -14,7 +14,7 @@ ENV REPO_REF master
WORKDIR /src
RUN git clone "$REPO" . --depth=10 --branch "$REPO_BRANCH" && git checkout "$REPO_REF"

RUN ./install.sh --docker-install --disable-secp-check --without-qt
RUN ./install.sh --docker-install --disable-os-deps-check --disable-secp-check --without-qt

ENV DATADIR /root/.joinmarket
ENV CONFIG ${DATADIR}/joinmarket.cfg
Expand Down

0 comments on commit 2c56940

Please sign in to comment.