Merge pull request #4527 from dagood/upgrade-nss-fedora23

Upgrade NSS in Fedora 23 Dockerfile to avoid NuGet restore timeout
This commit is contained in:
Livar 2016-10-28 19:05:34 -07:00 committed by GitHub
commit 72749b075a

View file

@ -36,6 +36,10 @@ RUN dnf install -y libicu-devel \
lttng-ust-devel && \ lttng-ust-devel && \
dnf clean all dnf clean all
# Upgrade NSS, used for SSL, to avoid NuGet restore timeouts.
RUN dnf upgrade -y nss
RUN dnf clean all
# Setup User to match Host User, and give superuser permissions # Setup User to match Host User, and give superuser permissions
ARG USER_ID=0 ARG USER_ID=0
RUN useradd -m code_executor -u ${USER_ID} -g wheel RUN useradd -m code_executor -u ${USER_ID} -g wheel
@ -49,4 +53,4 @@ RUN chmod -R a+rwx /home
USER ${USER_ID} USER ${USER_ID}
# Set working directory # Set working directory
WORKDIR /opt/code WORKDIR /opt/code