Browse Source

build(docker): update to debian bookworm

master
theborakompanioni 10 months ago
parent
commit
9d8988a1fd
No known key found for this signature in database
GPG Key ID: E8070AF0053AAC0D
  1. 4
      Dockerfile

4
Dockerfile

@ -1,4 +1,4 @@
FROM debian:bullseye-slim FROM debian:bookworm-slim
RUN mkdir -p /jm/clientserver RUN mkdir -p /jm/clientserver
WORKDIR /jm/clientserver WORKDIR /jm/clientserver
@ -7,8 +7,10 @@ COPY . .
RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \ RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \
python3-pip=* python3=* \ python3-pip=* python3=* \
&& pip3 config set global.break-system-packages true \
&& pip3 install 'wheel>=0.35.1' \ && pip3 install 'wheel>=0.35.1' \
&& ./install.sh --docker-install \ && ./install.sh --docker-install \
&& apt-get purge -y --autoremove python3-pip \ && apt-get purge -y --autoremove python3-pip \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

Loading…
Cancel
Save