You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#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:6.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 8080
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
COPY ["SimbirSoft Web API/SimbirSoft Web API.csproj", "SimbirSoft Web API/"]
RUN dotnet restore "SimbirSoft Web API/SimbirSoft Web API.csproj"
COPY . .
WORKDIR "/src/SimbirSoft Web API"
RUN dotnet build "SimbirSoft Web API.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "SimbirSoft Web API.csproj" -c Release -o /app/publish /p:UseAppHost=false