File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ COPY Pipfile* /opt/app-root/src/
7
7
# # NOTE - rhel enforces user container permissions stronger ##
8
8
USER root
9
9
10
- RUN python3 -m pip install --upgrade pip \
11
- && python3 -m pip install --upgrade pipenv \
10
+ RUN pip3 install --upgrade pip==21.3.1 \
11
+ && pip3 install --upgrade pipenv==2020.11.15 \
12
12
&& pipenv install --deploy
13
13
14
14
RUN pipenv lock -r > requirements.txt && pip3 install -r requirements.txt
Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ USER root
9
9
RUN yum -y install --disableplugin=subscription-manager wget \
10
10
&& yum --disableplugin=subscription-manager clean all
11
11
12
- RUN pip3 install pipenv
13
- RUN pipenv install --dev
12
+ RUN pip3 install --upgrade pip==21.3.1 \
13
+ && pip3 install --upgrade pipenv==2020.11.15 \
14
+ && pipenv install --dev
14
15
15
16
# Update python command to point to python3 install
16
17
RUN alternatives --set python /usr/bin/python3
You can’t perform that action at this time.
0 commit comments