From 5b987d13c16e78044c337613909877f32bd94e4a Mon Sep 17 00:00:00 2001 From: Robert Marshall Date: Thu, 16 Feb 2023 19:40:45 +0000 Subject: [PATCH] Config comes from env vars --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9c31c0..a83818d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,6 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - RUN apt-get install -y nodejs RUN chmod +x ./build.sh RUN ./build.sh -RUN sed -i "s//${AuthEndpoint}/g" output/appsettings.json -RUN sed -i "s//${AuthApiKey}/g" output/appsettings.json -RUN sed -i "s//${BlogEndpoint}/g" output/appsettings.json -RUN sed -i "s//${GitEndpoint}/g" output/appsettings.json -RUN sed -i "s//${MailboxEndpoint}/g" output/appsettings.json FROM mcr.microsoft.com/dotnet/aspnet:7.0 WORKDIR /app