File tree 4 files changed +6
-8
lines changed
4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,8 @@ USER 1001
53
53
# renovate: datasource=pypi depName=ansible
54
54
ENV ANSIBLE_VERSION 9.4.0
55
55
56
- RUN mkdir /opt/semaphore/venv
57
-
58
- RUN python3 -m venv /opt/semaphore/venv --system-site-packages && \
56
+ RUN mkdir /opt/semaphore/venv && \
57
+ python3 -m venv /opt/semaphore/venv --system-site-packages && \
59
58
source /opt/semaphore/venv/bin/activate && \
60
59
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests
61
60
Original file line number Diff line number Diff line change 18
18
19
19
if test -f " ${SEMAPHORE_CONFIG_PATH} /requirements.txt" ; then
20
20
echoerr " Installing additional python dependencies"
21
- pip3 install --upgrade --user \
21
+ pip3 install --upgrade \
22
22
-r " ${SEMAPHORE_CONFIG_PATH} /requirements.txt"
23
23
else
24
24
echoerr " No additional python dependencies to install"
Original file line number Diff line number Diff line change @@ -53,9 +53,8 @@ USER 1001
53
53
# renovate: datasource=pypi depName=ansible
54
54
ENV ANSIBLE_VERSION 9.4.0
55
55
56
- RUN mkdir /opt/semaphore/venv
57
-
58
- RUN python3 -m venv /opt/semaphore/venv --system-site-packages && \
56
+ RUN mkdir /opt/semaphore/venv && \
57
+ python3 -m venv /opt/semaphore/venv --system-site-packages && \
59
58
source /opt/semaphore/venv/bin/activate && \
60
59
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests
61
60
Original file line number Diff line number Diff line change 190
190
191
191
if test -f " ${SEMAPHORE_CONFIG_PATH} /requirements.txt" ; then
192
192
echoerr " Installing additional python dependencies"
193
- pip3 install --upgrade --user \
193
+ pip3 install --upgrade \
194
194
-r " ${SEMAPHORE_CONFIG_PATH} /requirements.txt"
195
195
else
196
196
echoerr " No additional python dependencies to install"
You can’t perform that action at this time.
0 commit comments