We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a42c31 commit 104d47fCopy full SHA for 104d47f
1 file changed
Dockerfile
@@ -5,6 +5,18 @@ RUN apt-get update && \
5
apt-get install -y curl git && \
6
rm -rf /var/lib/apt/lists/*
7
8
+# Security updates for CVE-2024-56406 (Perl), CVE-2025-7709 (SQLite)
9
+# Upgrade vulnerable system packages to their fixed versions
10
+RUN apt-get update && \
11
+ apt-get upgrade -y \
12
+ libperl5.40 \
13
+ perl \
14
+ perl-modules-5.40 \
15
+ perl-base \
16
+ libsqlite3-0 && \
17
+ apt-get clean && \
18
+ rm -rf /var/lib/apt/lists/*
19
+
20
COPY /docker /scripts
21
COPY /functions /functions
22
@@ -19,4 +31,4 @@ EXPOSE 8080
31
HEALTHCHECK --interval=5s --timeout=10s --start-period=1s --retries=3 \
32
CMD [ "bash", "-c", "exec curl -f http://localhost:${HASURA_CONNECTOR_PORT:-8080}/health" ]
33
-CMD [ "/scripts/start.sh" ]
34
+CMD [ "/scripts/start.sh" ]
0 commit comments