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 the official Python image AS the base image
FROM python:3.13 AS gv-base
FROM python:3.14 AS gv-base

# System Dependencies:
RUN apt-get update && apt-get install -y libpq-dev libxml2-dev libxslt-dev
Expand All @@ -12,7 +12,7 @@ ENV PATH="$PATH:/root/.local/bin"
# END gv-base

# BEGIN gv-runtime-base
FROM python:3.13-slim AS gv-runtime-base
FROM python:3.14-slim AS gv-runtime-base

# System Dependencies:
RUN apt-get update && apt-get install -y libpq-dev libxml2-dev libxslt-dev
Expand Down