Skip to content

Commit db838e5

Browse files
committed
fixing pykmip build error
Issue: CLDSRV-806
1 parent f0f4327 commit db838e5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/pykmip/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ RUN apk add --no-cache \
1717
pip3 install --upgrade typing-extensions>=4.13.2 && \
1818
git clone https://github.com/openkmip/pykmip.git && \
1919
cd pykmip && \
20-
python3 setup.py install && \
20+
pip3 install . && \
21+
cd / && \
2122
apk del .build-deps && \
22-
rm -rf /pykmip && \
23+
rm -rf /var/cache/apk/* /pykmip && \
2324
mkdir /pykmip
2425

2526
ADD ./bin /usr/local/bin

0 commit comments

Comments
 (0)