From cf11b29534b9af761213420b6a07e553d4ffba69 Mon Sep 17 00:00:00 2001 From: Jessica Stratton Date: Tue, 7 Nov 2023 07:44:39 -0800 Subject: [PATCH] updated Dockerfile to 8080 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b1f3b2eb2..6922c6ba66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ #Orgbook service Dockerfile FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /app -EXPOSE 8081 -ENV ASPNETCORE_URLS=http://*:8081 +EXPOSE 8080 +ENV ASPNETCORE_URLS=http://*:8080 FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build