We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9004a00 commit b1620e4Copy full SHA for b1620e4
src/BootstrapBlazor.Server/Dockerfile
@@ -5,9 +5,11 @@ FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
5
WORKDIR /app
6
EXPOSE 8080
7
8
-RUN apt-get update && apt-get install -y wget
9
-RUN apt install fonts-wqy-microhei
10
-RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && apt install ./google-chrome-stable_current_amd64.deb
+RUN apt-get update && apt-get install -y \
+ wget \
+ fonts-wqy-microhei
11
+RUN wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
12
+RUN apt install ./google-chrome-stable_current_amd64.deb
13
14
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
15
WORKDIR /
0 commit comments