Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base image & packages to fix vulnerabilities #55

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions Dockerfile.member
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phusion/baseimage:jammy-1.0.1
FROM phusion/baseimage:jammy-1.0.4

VOLUME ["/member", "/var/lib/mongooseim"]

Expand All @@ -15,7 +15,23 @@ RUN apt-get update && apt-get install -y \
telnet \
unixodbc \
tdsodbc \
odbc-postgresql && \
odbc-postgresql \
curl=7.81.0-1ubuntu1.17 \
less=590-1ubuntu0.22.04.3 \
libc6=2.35-0ubuntu3.8 \
libc-bin=2.35-0ubuntu3.8 \
libcurl3-gnutls=7.81.0-1ubuntu1.17 \
libglib2.0-0=2.72.4-0ubuntu2.3 \
libglib2.0-data=2.72.4-0ubuntu2.3 \
libkrb5-3=1.19.2-2ubuntu0.4 \
libk5crypto3=1.19.2-2ubuntu0.4 \
libnghttp2-14=1.43.0-1ubuntu0.2 \
libpython3.10-minimal=3.10.12-1~22.04.5 \
locales=2.35-0ubuntu3.8 \
openssh-client=1:8.9p1-3ubuntu0.10 \
openssl=3.0.2-0ubuntu1.17 \
python3-zipp=1.0.0-3ubuntu0.1 \
python3.10=3.10.12-1~22.04.5 && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

ARG BUILD_DATE
Expand Down
Loading