From 5a6bbae2aaa0e8be092935d2992bfb50da08eac3 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Tue, 15 Oct 2024 21:40:40 +0200 Subject: [PATCH] Use Python 3.13 in Docker container --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4e923e..0194d8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM --platform=linux/amd64 python:3.11-slim AS builder +FROM --platform=linux/amd64 python:3.13-slim AS builder ARG version # install python package in venv RUN python3 -m venv venv && \ venv/bin/pip3 --disable-pip-version-check install dmarc-metrics-exporter==${version} -FROM python:3.11-alpine AS runner +FROM python:3.13-alpine AS runner # adduser and directories RUN addgroup --system --gid 1000 dmarc-metrics && \