Skip to content

Commit 23294fb

Browse files
author
Thomas Preud'homme
committed
[LNT] Update git URL in Dockerfile
Summary: Update LNT git repo URL in Dockerfile from the old git mirror to the current github official repo. This will allow the Docker image to actually work as a Python 3 service. Reviewers: cmatthews, hubert.reinterpretcast, kristof.beyls, PrzemekWirkus, leandron Reviewed By: leandron Subscribers: llvm-commits, MatzeB, leandron, PrzemekWirkus Differential Revision: https://reviews.llvm.org/D73611
1 parent 5868906 commit 23294fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:alpine
33
RUN apk update \
44
&& apk add --no-cache --virtual .build-deps git g++ postgresql-dev yaml-dev \
55
&& apk add --no-cache libpq \
6-
&& git clone https://git.llvm.org/git/lnt /var/src/lnt \
6+
&& git clone https://github.com/llvm/llvm-lnt /var/src/lnt \
77
&& python3 /var/src/lnt/setup.py install --server \
88
&& rm -rf /var/src \
99
&& apk --purge del .build-deps \

0 commit comments

Comments
 (0)