2025-03-01 17:30:29 +01:00
|
|
|
FROM debian:bookworm-slim
|
2020-08-16 20:50:44 -04:00
|
|
|
|
|
|
|
|
RUN mkdir -p /jm/clientserver
|
|
|
|
|
WORKDIR /jm/clientserver
|
|
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
2023-10-30 00:32:44 +01:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \
|
2022-02-28 18:07:49 +01:00
|
|
|
python3-pip=* python3=* \
|
2025-03-01 17:30:29 +01:00
|
|
|
&& pip3 config set global.break-system-packages true \
|
2020-08-16 20:50:44 -04:00
|
|
|
&& pip3 install 'wheel>=0.35.1' \
|
|
|
|
|
&& ./install.sh --docker-install \
|
2022-02-28 18:07:49 +01:00
|
|
|
&& apt-get purge -y --autoremove python3-pip \
|
2020-08-16 20:50:44 -04:00
|
|
|
&& apt-get clean \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2025-03-01 17:30:29 +01:00
|
|
|
|