We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be81414 commit 60bb8eeCopy full SHA for 60bb8ee
packages/service-integration/Dockerfile
@@ -4,8 +4,13 @@
4
ARG PYTHON_VERSION="3.11.9"
5
ARG UV_VERSION="0.6"
6
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv_build
7
-# we docker image is built based on debian
8
-FROM python:${PYTHON_VERSION}-slim-bookworm AS base
+
+FROM python:${PYTHON_VERSION}-slim-bookworm AS base-arm64
9
+ENV UV_CONCURRENT_INSTALLS=1
10
11
+FROM python:${PYTHON_VERSION}-slim-bookworm AS base-amd64
12
13
+FROM base-${TARGETARCH} AS base
14
15
LABEL maintainer=pcrespov
16
0 commit comments