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 b1620e4 commit 3bbb645Copy full SHA for 3bbb645
src/BootstrapBlazor.Server/Dockerfile
@@ -5,11 +5,10 @@ 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 \
9
- wget \
10
- 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
+RUN apt-get update && apt-get install -y wget
+RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
+RUN apt install -y ./google-chrome-stable_current_amd64.deb
+RUN apt install -y fonts-wqy-microhei
13
14
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
15
WORKDIR /
0 commit comments