Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Feb 6, 2021
1 parent cd6f38b commit cfea429
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kokoro/linux/dockerfile/test/csharp/Dockerfile
@@ -1,4 +1,4 @@
FROM debian:bullseye
FROM debian:buster

# Install dependencies. We start with the basic ones require to build protoc
# and the C++ build
Expand All @@ -22,6 +22,10 @@ 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

Expand Down

0 comments on commit cfea429

Please sign in to comment.