Update Fedora's NSS to avoid NuGet restore timeout

This commit is contained in:
Davis Goodin 2016-10-28 14:50:27 -05:00
parent 31656f0e4e
commit 366ac11702

View file

@ -36,6 +36,10 @@ RUN dnf install -y libicu-devel \
lttng-ust-devel && \
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
ARG USER_ID=0
RUN useradd -m code_executor -u ${USER_ID} -g wheel
@ -49,4 +53,4 @@ RUN chmod -R a+rwx /home
USER ${USER_ID}
# Set working directory
WORKDIR /opt/code
WORKDIR /opt/code