From 8e3bed9b192f9d9518ed5f8ffab8b9fe4843cf16 Mon Sep 17 00:00:00 2001 From: Louwar Date: Mon, 13 Mar 2023 13:38:05 +0100 Subject: [PATCH] Update docker --- Sources/.dockerignore | 26 ++++++++++++++++++++++++++ Sources/Dockerfile | 25 +++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 Sources/.dockerignore create mode 100644 Sources/Dockerfile diff --git a/Sources/.dockerignore b/Sources/.dockerignore new file mode 100644 index 0000000..25f68c7 --- /dev/null +++ b/Sources/.dockerignore @@ -0,0 +1,26 @@ + +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md diff --git a/Sources/Dockerfile b/Sources/Dockerfile new file mode 100644 index 0000000..de0c92e --- /dev/null +++ b/Sources/Dockerfile @@ -0,0 +1,25 @@ +#See https://aka.ms/containerfastmode to understand 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 443 + +FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build +WORKDIR /src +COPY ["API/API.csproj", "API/"] +COPY ["Model/Model.csproj", "Model/"] +COPY ["Shared/Shared.csproj", "Shared/"] +COPY ["StubLib/StubLib.csproj", "StubLib/"] +RUN dotnet restore "API/API.csproj" +COPY . . +WORKDIR "/src/API" +RUN dotnet build "API.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "API.csproj" -c Release -o /app/publish /p:UseAppHost=false + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "API.dll"]