[PATCH] D73611: [LNT] Update git URL in Dockerfile

Thomas Preud'homme via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 29 01:44:54 PST 2020


thopre created this revision.
thopre added reviewers: cmatthews, hubert.reinterpretcast, kristof.beyls, PrzemekWirkus.

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.


https://reviews.llvm.org/D73611

Files:
  docker/Dockerfile


Index: docker/Dockerfile
===================================================================
--- docker/Dockerfile
+++ docker/Dockerfile
@@ -3,7 +3,7 @@
 RUN apk update \
   && apk add --no-cache --virtual .build-deps git g++ postgresql-dev yaml-dev \
   && apk add --no-cache libpq \
-  && git clone https://git.llvm.org/git/lnt /var/src/lnt \
+  && git clone https://github.com/llvm/llvm-lnt /var/src/lnt \
   && python3 /var/src/lnt/setup.py install --server \
   && rm -rf /var/src \
   && apk --purge del .build-deps \


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73611.241069.patch
Type: text/x-patch
Size: 524 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200129/558ce558/attachment.bin>


More information about the llvm-commits mailing list