diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c56a1723b..593aa6e5b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ - ci: run edge build every night ([206d731](https://github.com/teslamate-org/teslamate/commit/206d731935a5e8ebc350a7981df8c6d92480b88b) - @JakobLichterfeld) - ci: update upload-artifact action (#3689 - @JakobLichterfeld) - build: bump app base image to fix 'GLIBC_2.34' not found error (#3691- @JakobLichterfeld) +- build: bump app dependencies for libssl and netcat to packages available in debian bookworm (#3691- @JakobLichterfeld) - build: reduce the size of the Docker image by cleaning the APT cache (#3692- @JakobLichterfeld) #### Dashboards diff --git a/Dockerfile b/Dockerfile index f2f9362600..e8dbc2f75e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,9 +58,9 @@ WORKDIR $HOME RUN apt-get update && apt-get install -y --no-install-recommends \ libodbc1 \ libsctp1 \ - libssl1.1 \ + libssl3 \ libstdc++6 \ - netcat \ + netcat-traditional \ tini \ tzdata && \ apt-get clean && \