Skip to content

Commit 60bb8ee

Browse files
committed
missing Dockerfile
1 parent be81414 commit 60bb8ee

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/service-integration/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@
44
ARG PYTHON_VERSION="3.11.9"
55
ARG UV_VERSION="0.6"
66
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
7+
8+
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
914

1015
LABEL maintainer=pcrespov
1116

0 commit comments

Comments
 (0)