Skip to content

Commit 08d8a85

Browse files
author
Vincent Wilms
committed
Add git executable to python container
1 parent 331ad15 commit 08d8a85

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v2.0.0-beta.45 - 2025-01-23
2+
3+
- Add git executable to python container
4+
15
## v2.0.0-beta.44 - 2025-01-23
26

37
- Allow non-IP addresses as host in Nexus.Sources.Remote

src/agent/python/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ COPY src/agent/python /app
55

66
WORKDIR "/app"
77

8-
RUN useradd -u 1654 app &&\
8+
RUN apt update &&\
9+
apt install git -y &&\
10+
useradd -u 1654 app &&\
911
pip install -r requirements.txt
1012

1113
USER app

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": "2.0.0",
3-
"suffix": "beta.44"
3+
"suffix": "beta.45"
44
}

0 commit comments

Comments
 (0)