File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ FROM base AS pipenv
13
13
14
14
# Install pipenv and compilation dependencies
15
15
RUN pip3 install --user --no-cache-dir pipenv
16
- RUN apt-get update && apt-get install -y --no-install-recommends gcc python-dev git && rm -rf /var/lib/apt/lists/*
16
+ RUN apt-get update && apt-get install -y --no-install-recommends gcc git && rm -rf /var/lib/apt/lists/*
17
17
18
18
# Tell pipenv to create venv in the current directory
19
19
ENV PIPENV_VENV_IN_PROJECT=1
@@ -30,8 +30,8 @@ RUN python -m venv /opt/venv
30
30
ENV PATH="/opt/venv/bin:$PATH"
31
31
COPY go_attack_utils ./../go_attack_utils
32
32
COPY streamlit_app/requirements.txt .
33
- RUN pip3 install -r requirements.txt
34
- RUN pip3 install tensorflow
33
+ RUN pip3 install --upgrade pip
34
+ RUN pip3 install -r requirements.txt tensorflow --use-pep517
35
35
36
36
37
37
FROM base AS streamlit-app
You can’t perform that action at this time.
0 commit comments