diff --git a/Dockerfile b/Dockerfile index 9a9f47d..08c3542 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ #checkov:skip=CKV_DOCKER_2 #checkov:skip=CKV_DOCKER_3 -FROM python:3.13.2-slim@sha256:f3614d98f38b0525d670f287b0474385952e28eb43016655dd003d0e28cf8652 +FROM python:3.13.2-slim@sha256:8f3aba466a471c0ab903dbd7cb979abd4bda370b04789d25440cc90372b50e04 LABEL org.opencontainers.image.source https://github.com/github/evergreen WORKDIR /action/workspace @@ -8,7 +8,7 @@ COPY requirements.txt *.py /action/workspace/ RUN python3 -m pip install --no-cache-dir -r requirements.txt \ && apt-get -y update \ - && apt-get -y install --no-install-recommends git=1:2.39.5-0+deb12u1 \ + && apt-get -y install --no-install-recommends git=1:2.39.5-0+deb12u2 \ && rm -rf /var/lib/apt/lists/* CMD ["/action/workspace/evergreen.py"]