1# Copyright 2015 gRPC authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15FROM ubuntu:22.04 16 17RUN apt update && apt -y upgrade 18RUN apt install -y apt-transport-https ca-certificates gnupg wget unzip && apt clean 19 20# Install dotnet SDK 21RUN wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \ 22 && dpkg -i packages-microsoft-prod.deb \ 23 && rm packages-microsoft-prod.deb \ 24 && apt update \ 25 && apt install -y dotnet-sdk-8.0 \ 26 && apt clean 27 28# we only want to test dotnet core runtime. This also allows us to keep 29# this docker image minimal by not installing the other runtimes. 30ENV SKIP_NET45_DISTRIBTEST=1 31ENV SKIP_NETCOREAPP21_DISTRIBTEST=1 32ENV SKIP_NETCOREAPP31_DISTRIBTEST=1 33ENV SKIP_NET50_DISTRIBTEST=1 34