From 04808a43be78177832f84a5378feff965375dfb3 Mon Sep 17 00:00:00 2001 From: Nick Seguin Date: Sun, 10 Dec 2023 21:19:35 -0600 Subject: [PATCH] add compose.yaml --- .env.example | 4 ++++ Dockerfile | 4 ++++ compose.yaml | 9 +++++++++ src/NSeguin.Dev.Web/Program.cs | 1 + 4 files changed, 18 insertions(+) create mode 100644 .env.example create mode 100644 compose.yaml diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..75d0d04 --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +AZURE_APP_CONFIGURATION_CONNECTION_STRING= +AZURE_TENANT_ID= +AZURE_CLIENT_ID= +AZURE_CLIENT_SECRET= \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 0ca1507..07b6a4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,4 +58,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime WORKDIR /app COPY --from=build /app/out ./ + +# authenticate with Azure CLI +RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash + ENTRYPOINT ["dotnet", "NSeguin.Dev.Web.dll"] \ No newline at end of file diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..99437de --- /dev/null +++ b/compose.yaml @@ -0,0 +1,9 @@ +version: '3.8' +services: + web: + image: nseguin42/website:latest + env_file: + - .env + ports: + - 42080:25070 + entrypoint: dotnet NSeguin.Dev.Web.dll --urls=http://localhost:25070 \ No newline at end of file diff --git a/src/NSeguin.Dev.Web/Program.cs b/src/NSeguin.Dev.Web/Program.cs index a5520c9..e0f6ade 100644 --- a/src/NSeguin.Dev.Web/Program.cs +++ b/src/NSeguin.Dev.Web/Program.cs @@ -1,3 +1,4 @@ +using Azure; using Azure.Identity; using Microsoft.AspNetCore.Authentication.OpenIdConnect;