File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ RUN apt-get update && \
55 apt-get install -y curl git && \
66 rm -rf /var/lib/apt/lists/*
77
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+
820COPY /docker /scripts
921COPY /functions /functions
1022
@@ -19,4 +31,4 @@ EXPOSE 8080
1931HEALTHCHECK --interval=5s --timeout=10s --start-period=1s --retries=3 \
2032 CMD [ "bash" , "-c" , "exec curl -f http://localhost:${HASURA_CONNECTOR_PORT:-8080}/health" ]
2133
22- CMD [ "/scripts/start.sh" ]
34+ CMD [ "/scripts/start.sh" ]
You can’t perform that action at this time.
0 commit comments