Skip to content

Commit 3375089

Browse files
committed
fixing pykmip build error
Issue: CLDSRV-806
1 parent 8d4a853 commit 3375089

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
@@ -15,9 +15,10 @@ RUN apk add --no-cache \
1515
git && \
1616
git clone https://github.com/openkmip/pykmip.git && \
1717
cd pykmip && \
18-
python3 setup.py install && \
18+
pip3 install . && \
19+
cd / && \
1920
apk del .build-deps && \
20-
rm -rf /pykmip && \
21+
rm -rf /var/cache/apk/* /pykmip && \
2122
mkdir /pykmip
2223

2324
ADD ./bin /usr/local/bin

0 commit comments

Comments
 (0)