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 1bd2b5d commit 1c00ef8Copy full SHA for 1c00ef8
docker/lnt.dockerfile
@@ -29,13 +29,14 @@ FROM python:3.10-alpine AS llvm-lnt
29
# Install dependencies
30
RUN apk update \
31
&& apk add --no-cache --virtual .build-deps git g++ postgresql-dev yaml-dev \
32
- && apk add --no-cache libpq
+ && apk add --no-cache libpq \
33
+ && apk --purge del .build-deps
34
35
# Install LNT itself, without leaving behind any sources inside the image.
36
RUN --mount=type=bind,source=.,target=./lnt-source \
37
cp -R lnt-source /tmp/lnt-src && \
38
cd /tmp/lnt-src && \
- pip3 install -r requirements.server.txt && apk --purge del .build-deps && \
39
+ pip3 install -r requirements.server.txt && \
40
rm -rf /tmp/lnt-src
41
42
0 commit comments