Skip to content

Commit 3bbb645

Browse files
committed
chore: 调整顺序
1 parent b1620e4 commit 3bbb645

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/BootstrapBlazor.Server/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
55
WORKDIR /app
66
EXPOSE 8080
77

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
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 apt install -y fonts-wqy-microhei
1312

1413
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
1514
WORKDIR /

0 commit comments

Comments
 (0)