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,7 +1,7 @@
#
# Stage 1 - Install build dependencies
#
FROM python:3.11-slim-bullseye AS builder
FROM python:3.13-slim-bullseye AS builder

WORKDIR /inscriptis
RUN python -m venv .venv && .venv/bin/python -m pip install --upgrade pip
Expand All @@ -11,7 +11,7 @@ RUN .venv/bin/pip install --no-cache-dir inscriptis[web-service] && \
#
# Stage 2 - Copy only necessary files to the runner stage
#
FROM python:3.11-slim-bullseye
FROM python:3.13-slim-bullseye
LABEL maintainer="albert@weichselbraun.net"

# Note: only copy the src directory, to prevent bloating the image with
Expand Down
Loading