Skip to content

Commit

Permalink
fix: update libc6 to fix cve-2023-4911
Browse files Browse the repository at this point in the history
  • Loading branch information
Allob committed Oct 4, 2023
1 parent 7320fea commit 3cde4da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN apt-get update && \
apt-get install -y python3 \
apt-get install -y libc6=2.35-0ubuntu3.4 \
python3 \
python3-venv \
python3-dev \
python3-pip && \
Expand Down Expand Up @@ -39,7 +40,7 @@ WORKDIR /

# Install ca-certificates is required for https connection to InfluxDB
RUN apt-get update && \
apt-get install -y python3 ca-certificates
apt-get install -y libc6=2.35-0ubuntu3.4 python3 ca-certificates

COPY --from=dep-builder --chown=appuser /opt/venv /opt/venv
COPY --chown=appuser ./aidial_analytics_realtime /aidial_analytics_realtime
Expand Down

0 comments on commit 3cde4da

Please sign in to comment.