Skip to content

Commit c7109ac

Browse files
committed
Fix Python dependencies in docker image
1 parent f8e745d commit c7109ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ ADD . /config-merger/
66

77
RUN apt-get update && apt-get install -y make curl
88

9-
RUN python -m pip install --upgrade pip && pip3 install .
9+
RUN python -m pip install --upgrade pip && pip3 install -r requirements.txt && pip3 install .
1010
RUN rm -rf /config-merger/*

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setuptools~=78.1.1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
'pyyaml~=6.0.2',
1414
'pathlib2~=2.3.7',
1515
'boto3~=1.39.14',
16-
'hvac~=2.3.0',
17-
'setuptools~=44.0.0'
16+
'hvac~=2.3.0'
1817
]
1918

2019
setup(

0 commit comments

Comments
 (0)