Skip to content

Commit

Permalink
[LNT] Update git URL in Dockerfile
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Thomas Preud'homme committed Jan 29, 2020
1 parent 5868906 commit 23294fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:alpine
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 \
Expand Down

0 comments on commit 23294fb

Please sign in to comment.