restore `Dockerfile` back to original

This commit is contained in:
Alan Moon 2024-11-28 11:01:43 -08:00
parent 15d21a7aa5
commit 7b9e3fc694

View File

@ -1,11 +1,11 @@
# Use the official .NET SDK image for building the application
FROM mcr.microsoft.com/dotnet/sdk:6.0
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
# Copy the source code
COPY . .
# Restore Project
# Restore dependencies and build the application
RUN dotnet build -c Release -o /app
# Create clean run environment (without source and sdk)