We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 331ad15 commit 08d8a85Copy full SHA for 08d8a85
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## v2.0.0-beta.45 - 2025-01-23
2
+
3
+- Add git executable to python container
4
5
## v2.0.0-beta.44 - 2025-01-23
6
7
- Allow non-IP addresses as host in Nexus.Sources.Remote
src/agent/python/Dockerfile
@@ -5,7 +5,9 @@ COPY src/agent/python /app
WORKDIR "/app"
8
-RUN useradd -u 1654 app &&\
+RUN apt update &&\
9
+ apt install git -y &&\
10
+ useradd -u 1654 app &&\
11
pip install -r requirements.txt
12
13
USER app
version.json
@@ -1,4 +1,4 @@
{
"version": "2.0.0",
- "suffix": "beta.44"
+ "suffix": "beta.45"
}
0 commit comments