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 c2f7356 commit bd8ffafCopy full SHA for bd8ffaf
src/BootstrapBlazor.Server/Dockerfile
@@ -5,6 +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 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
10
+RUN apt install ./google-chrome-stable_current_amd64.deb
11
+RUN apt install fonts-wqy-microhei
12
+
13
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
14
WORKDIR /
15
COPY . .
0 commit comments