Skip to content

Commit

Permalink
Merge pull request #86 from netcorepal/fix-dockerfile
Browse files Browse the repository at this point in the history
fix Dockerfile
  • Loading branch information
witskeeper authored Sep 27, 2024
2 parents c278da3 + d5afe10 commit dd2482c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/NetCorePal.Web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/aspnet:8.0-preview AS base
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
USER app
WORKDIR /app
EXPOSE 8080
EXPOSE 8081

FROM mcr.microsoft.com/dotnet/sdk:8.0-preview AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
WORKDIR /src
COPY ["Directory.Build.props", "."]
COPY ["NuGet.config", "."]
Expand Down

0 comments on commit dd2482c

Please sign in to comment.