mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
16 lines
453 B
Docker
16 lines
453 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN mkdir -p /jm/clientserver
|
|
WORKDIR /jm/clientserver
|
|
|
|
COPY . .
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \
|
|
python3-pip=* python3=* \
|
|
&& pip3 config set global.break-system-packages true \
|
|
&& pip3 install 'wheel>=0.35.1' \
|
|
&& ./install.sh --docker-install \
|
|
&& apt-get purge -y --autoremove python3-pip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|