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 8ef65dc commit 9f847ecCopy full SHA for 9f847ec
Dockerfile
@@ -4,19 +4,14 @@ RUN apk update \
4
&& apk add --no-cache --virtual .build-deps git g++ postgresql-dev yaml-dev \
5
&& apk add --no-cache libpq
6
7
-WORKDIR /var/src/lnt
+COPY . /var/src/lnt
8
9
-COPY requirements*.txt setup.py .
10
-# setup.py uses lnt.__version__ etc.
11
-COPY lnt/__init__.py lnt/__init__.py
12
-# we build the cperf extension during install
13
-COPY lnt/testing/profile lnt/testing/profile
+WORKDIR /var/src/lnt
14
15
RUN pip3 install -r requirements.server.txt \
16
&& apk --purge del .build-deps \
17
&& mkdir /var/log/lnt
18
19
-COPY . .
20
COPY docker/docker-entrypoint.sh docker/wait_db /usr/local/bin/
21
22
VOLUME /var/log
0 commit comments