Skip to content

Commit

Permalink
update dockerfile to use .net8 base image
Browse files Browse the repository at this point in the history
Signed-off-by: David Hernando <[email protected]>
  • Loading branch information
davidatwhiletrue committed Jul 12, 2024
1 parent ecad97d commit ca85ec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Docs/Demos/Docker-NCTLWebExplorer/NCTLWebExplorer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
COPY ./casper-net-sdk /app/casper-net-sdk
COPY ./casper-net-sdk-web /app/casper-net-sdk-web

Expand Down

0 comments on commit ca85ec9

Please sign in to comment.