aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-03 19:17:50 +0800
committercrupest <crupest@outlook.com>2022-12-03 19:20:04 +0800
commit5239049afe90d2ef926c1e1b917172b5f44b52fc (patch)
treeea212efd7a297b7ddc42fbabc9c830e839c16475 /Dockerfile
parent27246baabce5a4c6e5145b16d0eac205e4f092df (diff)
downloadtimeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.tar.gz
timeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.tar.bz2
timeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.zip
Fix upgrade dotnet to v7.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8ed6c1b1..93102abb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ COPY FrontEnd .
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile && pnpm run build
-FROM mcr.microsoft.com/dotnet/sdk:6.0 AS back-build
+FROM mcr.microsoft.com/dotnet/sdk:7.0 AS back-build
WORKDIR /timeline-app
COPY BackEnd .
COPY --from=front-build /timeline-app/dist /timeline-app/Timeline/ClientApp