diff --git a/Dockerfile b/Dockerfile index c689e85ec..0a61c1cae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 python:3.12-slim AS dagster-base +FROM --platform=linux/amd64 python:3.13-slim AS dagster-base # Docker run launcher example RUN mkdir -p /opt/dagster/dagster_home /opt/dagster/app diff --git a/dockerfiles/orchestrate/Dockerfile.global b/dockerfiles/orchestrate/Dockerfile.global index 401c5d938..cf6a64348 100644 --- a/dockerfiles/orchestrate/Dockerfile.global +++ b/dockerfiles/orchestrate/Dockerfile.global @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 python:3.12-slim AS dagster-base +FROM --platform=linux/amd64 python:3.13-slim AS dagster-base RUN mkdir -p /opt/dagster/dagster_home /opt/dagster/app && \ useradd -s /bin/bash -d /opt/dagster/dagster_home/ dagster && \ chown -R dagster: /opt/dagster diff --git a/pyproject.toml b/pyproject.toml index e02a9c86a..3624a4307 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "3.12.*" +python = "3.13.*" PyPika = "^0.48.9" dagster = "^1.8.5" dagster-airbyte = "^0.24.0"