Skip to content

Commit

Permalink
Use Python 3.13 in Docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Oct 15, 2024
1 parent ae8c16d commit 5a6bbae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down

0 comments on commit 5a6bbae

Please sign in to comment.