Skip to content

Commit

Permalink
Fix 5.0 SDK Linux restore issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Feb 6, 2021
1 parent 8932446 commit d9889a4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions kokoro/linux/dockerfile/test/csharp/Dockerfile
@@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:buster

# Install dependencies. We start with the basic ones require to build protoc
# and the C++ build
Expand All @@ -22,8 +22,12 @@ RUN apt-get update && apt-get install -y \
wget \
&& apt-get clean

# Update ca-certificates to fix known buster + .NET 5 issue
# https://github.com/NuGet/Announcements/issues/49
RUN apt-get update && apt-get install -y ca-certificates && apt-get clean

# dotnet SDK prerequisites
RUN apt-get update && apt-get install -y libunwind8 libicu57 && apt-get clean
RUN apt-get update && apt-get install -y libunwind8 && apt-get clean

# Install dotnet SDK via install script
RUN wget -q https://dot.net/v1/dotnet-install.sh && \
Expand Down

0 comments on commit d9889a4

Please sign in to comment.