Skip to content

Commit 32a22f7

Browse files
authored
Fix tagger image (DataDog#23213)
* fix tagger image * fix * use valid image
1 parent 0a3f84a commit 32a22f7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.gitlab/tagger/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use a separate image to build ddev from source so the final image doesn't need git
2-
FROM python:3.13 AS ddev-python
2+
FROM registry.ddbuild.io/images/mirror/python:3.13.0 AS ddev-python
33
COPY . /home
44
RUN python -m pip install build
55
RUN python -m build -s ./home/ddev
@@ -47,6 +47,6 @@ COPY --from=ddev-python ddev.tar.gz /
4747

4848
# Install pip and ddev for release tagging
4949
# Install awscli for access to the key used for signing in integrations-extras and marketplace
50-
RUN curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
51-
&& pip3 install --no-cache-dir awscli==1.29.7 \
52-
&& pip3 install --no-cache-dir ddev.tar.gz
50+
RUN curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 - --break-system-packages \
51+
&& pip3 install --no-cache-dir --break-system-packages awscli==1.29.7 \
52+
&& pip3 install --no-cache-dir --break-system-packages ddev.tar.gz

0 commit comments

Comments
 (0)