We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf32c5c commit 428e827Copy full SHA for 428e827
docker/lnt.dockerfile
@@ -32,9 +32,10 @@ RUN apk update \
32
&& apk add --no-cache libpq
33
34
# Install LNT itself
35
-COPY . /var/tmp/lnt
36
-WORKDIR /var/tmp/lnt
37
-RUN pip3 install -r requirements.server.txt && apk --purge del .build-deps
+RUN --mount=type=bind,source=.,target=./lnt-source \
+ cd lnt-source && \
+ pip3 install -r requirements.server.txt && \
38
+ apk --purge del .build-deps
39
40
41
FROM llvm-lnt AS llvm-lnt-prod
0 commit comments