Skip to content
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
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ RUN apt-get update && \
apt-get install -y curl git && \
rm -rf /var/lib/apt/lists/*

# Security updates for CVE-2024-56406 (Perl), CVE-2025-7709 (SQLite)
# Upgrade vulnerable system packages to their fixed versions
RUN apt-get update && \
apt-get upgrade -y \
libperl5.40 \
perl \
perl-modules-5.40 \
perl-base \
libsqlite3-0 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY /docker /scripts
COPY /functions /functions

Expand All @@ -19,4 +31,4 @@ EXPOSE 8080
HEALTHCHECK --interval=5s --timeout=10s --start-period=1s --retries=3 \
CMD [ "bash", "-c", "exec curl -f http://localhost:${HASURA_CONNECTOR_PORT:-8080}/health" ]

CMD [ "/scripts/start.sh" ]
CMD [ "/scripts/start.sh" ]