mirror of
https://github.com/ansible/awx.git
synced 2026-04-14 14:39:26 -02:30
Merge pull request #9121 from shanemcd/devel
Dont fail image builds because of debuginfo repo problems Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -148,7 +148,7 @@ RUN cd /usr/local/bin && \
|
|||||||
|
|
||||||
{% if build_dev|bool %}
|
{% if build_dev|bool %}
|
||||||
# Install development/test requirements
|
# Install development/test requirements
|
||||||
RUN dnf --enablerepo=debuginfo -y install \
|
RUN dnf -y install \
|
||||||
gdb \
|
gdb \
|
||||||
gtk3 \
|
gtk3 \
|
||||||
gettext \
|
gettext \
|
||||||
@@ -162,13 +162,17 @@ RUN dnf --enablerepo=debuginfo -y install \
|
|||||||
nss \
|
nss \
|
||||||
make \
|
make \
|
||||||
patch \
|
patch \
|
||||||
python3-debuginfo \
|
|
||||||
socat \
|
socat \
|
||||||
tmux \
|
tmux \
|
||||||
wget \
|
wget \
|
||||||
diffutils \
|
diffutils \
|
||||||
unzip && \
|
unzip && \
|
||||||
npm install -g n && n 14.15.1 && dnf remove -y nodejs
|
npm install -g n && n 14.15.1 && dnf remove -y nodejs
|
||||||
|
|
||||||
|
# This package randomly fails to download.
|
||||||
|
# It is nice to have in the dev env, but not necessary.
|
||||||
|
# Add it back to the list above if the repo ever straighten up.
|
||||||
|
RUN dnf --enablerepo=debuginfo -y install python3-debuginfo || :
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
# Copy app from builder
|
# Copy app from builder
|
||||||
|
|||||||
Reference in New Issue
Block a user