From 7df58d3ffbbeac29f8faa7529bdf5660d0212975 Mon Sep 17 00:00:00 2001 From: George Drak Date: Wed, 14 Jul 2021 11:10:46 +0500 Subject: [PATCH] fix syntax --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d34a9df..571dea1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN apt-get update \ && add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \ && add-apt-repository "deb [arch=amd64] http://dl.google.com/linux/chrome/deb stable main" \ && apt-get update \ - && apt-get install -y --no-install-recommends docker-ce-cli $(apt-cache depends google-chrome-stable | grep Depends | sed -e "s/.*ends:\ //" -e 's/<[^>]*>//')` libxss1 libxtst6 libx11-xcb1 \ + && apt-get install -y --no-install-recommends docker-ce-cli $(apt-cache depends google-chrome-stable | grep Depends | sed -e "s/.*ends:\ //" -e 's/<[^>]*>//') libxss1 libxtst6 libx11-xcb1 \ && curl -L https://dot.net/v1/dotnet-install.sh -o /dotnet-install.sh \ && chmod +x /dotnet-install.sh \ && /dotnet-install.sh --channel 3.1 \