File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 55 branches :
66 - pack
77 - release
8+ - docker
89
910jobs :
1011 docker :
Original file line number Diff line number Diff line change 33
44FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
55WORKDIR /app
6- EXPOSE 80
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 -y ./google-chrome-stable_current_amd64.deb
11+ RUN rm ./google-chrome-stable_current_amd64.deb
12+ RUN apt install -y fonts-wqy-microhei
713
814FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
915WORKDIR /
1016COPY . .
1117
1218WORKDIR "src/BootstrapBlazor.Server"
1319FROM build AS publish
20+ RUN dotnet build
1421RUN dotnet publish -c Release -o /app
1522
1623FROM base AS final
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Razor" >
22
33 <PropertyGroup >
4- <Version >9.9.2-beta05 </Version >
4+ <Version >9.9.2</Version >
55 </PropertyGroup >
66
77 <ItemGroup >
You can’t perform that action at this time.
0 commit comments