tools/docker/ubuntu/gcc-9: Fix typo of package name.

This commit is contained in:
Jason Volk 2020-04-18 02:57:05 -07:00
parent d9cc7cd892
commit 96896ce89e
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ RUN apt-get update \
&& apt-get install --no-install-recommends -y software-properties-common \
&& add-apt-repository ppa:jonathonf/gcc-9.2 \
&& apt-get update \
&& apt-get install --no-install-recommends -y g++- gcc-9 \
&& apt-get install --no-install-recommends -y g++-9 gcc-9 \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*