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 590130e commit 33e8f72Copy full SHA for 33e8f72
python/Dockerfile
@@ -9,11 +9,9 @@ RUN apt-get update && \
9
RUN python3 -m venv /opt/venv
10
ENV PATH="/opt/venv/bin:$PATH"
11
12
-COPY ./requirements.txt /perftest/
+COPY . /perftest
13
RUN pip install -U pip setuptools
14
RUN pip install --no-deps --requirement /perftest/requirements.txt
15
-
16
-COPY . /perftest
17
RUN pip install -e /perftest
18
19
#
@@ -28,6 +26,8 @@ RUN apt-get update && \
28
26
29
27
# Copy accross the venv
30
COPY --from=build-image /opt/venv /opt/venv
+# Copy code to keep editable install working
31
32
33
# Create the user that will be used to run the app
0 commit comments