Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a specific version of the base image to ensure builds are reproducible
FROM python:3.12-slim-bookworm as builder
FROM python:3.13.12-slim-bookworm as builder

# Use environment variables for versions, making updates easier
ENV CHECKOV_VERSION="3.2.125"
Expand Down Expand Up @@ -58,7 +58,7 @@ RUN wget -O terraform-docs.tar.gz "https://terraform-docs.io/dl/v${TFDOCS_VERSIO
RUN tflint --init --config /root/.tflint.hcl

# Use a slim image for the final image
FROM python:3.12-slim-bookworm
FROM python:3.13.12-slim-bookworm

# Applications required just for tools
RUN apt-get update && \
Expand Down