Skip to content

Commit f67eecb

Browse files
committed
Updates dependencies for security and compatibility
Updates base image dependencies to address security vulnerabilities and ensure compatibility with the latest system libraries. Specifically, updates `libssl` and `libicu` to more recent and supported versions. Also removes redundant `tzdata-legacy` package.
1 parent f253dac commit f67eecb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,9 @@ RUN apt-get update \
122122
libc6 \
123123
libgcc-s1 \
124124
libicu74 \
125-
libssl3t64 \
125+
libssl3 \
126126
libstdc++6 \
127127
tzdata \
128-
tzdata-legacy \
129128
&& rm -rf /var/lib/apt/lists/* \
130129
&& dos2unix /app/docker-entrypoint.sh
131130

@@ -182,11 +181,10 @@ RUN apt-get update \
182181
# .NET dependencies
183182
libc6 \
184183
libgcc-s1 \
185-
libicu74 \
186-
libssl3t64 \
184+
libicu66 \
185+
libssl1.1 \
187186
libstdc++6 \
188187
tzdata \
189-
tzdata-legacy \
190188
&& rm -rf /var/lib/apt/lists/* \
191189
&& dos2unix /app/docker-entrypoint.sh
192190

0 commit comments

Comments
 (0)