build: create dockerfile
This commit is contained in:
parent
42f0b8ee0e
commit
9abdb1ac43
28
Dockerfile
28
Dockerfile
@ -1,25 +1,23 @@
|
|||||||
#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 AS base
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
|
||||||
USER app
|
LABEL company="Winsomnia"
|
||||||
|
LABEL maintainer.name="Wesser" maintainer.email="support@winsomnia.net"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
EXPOSE 8080
|
|
||||||
EXPOSE 8081
|
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||||
ARG BUILD_CONFIGURATION=Release
|
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["Backend.csproj", "."]
|
|
||||||
RUN dotnet restore "./././Backend.csproj"
|
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/."
|
|
||||||
RUN dotnet build "./Backend.csproj" -c $BUILD_CONFIGURATION -o /app/build
|
|
||||||
|
|
||||||
FROM build AS publish
|
ARG NUGET_USERNAME
|
||||||
ARG BUILD_CONFIGURATION=Release
|
ARG NUGET_PASSWORD
|
||||||
RUN dotnet publish "./Backend.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
ENV NUGET_USERNAME=$NUGET_USERNAME
|
||||||
|
ENV NUGET_PASSWORD=$NUGET_PASSWORD
|
||||||
|
|
||||||
|
RUN dotnet restore ./Backend.sln --configfile nuget.config
|
||||||
|
WORKDIR /app
|
||||||
|
WORKDIR /src
|
||||||
|
RUN dotnet publish ./Endpoint/Endpoint.csproj -c Release -o /app
|
||||||
|
|
||||||
FROM base AS final
|
FROM base AS final
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=publish /app/publish .
|
COPY --from=build /app .
|
||||||
ENTRYPOINT ["dotnet", "Backend.dll"]
|
ENTRYPOINT ["dotnet", "Enpoint.dll"]
|
Loading…
Reference in New Issue
Block a user