11FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
22WORKDIR /app
33
4- ENV HUSKY 0
5-
64COPY ./*.sln ./NuGet.Config ./
75COPY ./src/*.props ./src/
86COPY ./tests/*.props ./tests/
@@ -42,7 +40,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS job
4240WORKDIR /app
4341COPY --from=job-publish /app/src/Exceptionless.Job/out ./
4442
45- EXPOSE 80 443
43+ EXPOSE 8080
4644
4745ENTRYPOINT [ "dotnet" , "Exceptionless.Job.dll" ]
4846
@@ -62,7 +60,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS api
6260WORKDIR /app
6361COPY --from=api-publish /app/src/Exceptionless.Web/out ./
6462
65- EXPOSE 80 443
63+ EXPOSE 8080
6664
6765ENTRYPOINT [ "dotnet" , "Exceptionless.Web.dll" ]
6866
@@ -93,7 +91,7 @@ ENV EX_ConnectionStrings__Storage=provider=folder;path=/app/storage \
9391RUN chmod +x /app/app-docker-entrypoint.sh
9492RUN chmod +x /usr/local/bin/update-config
9593
96- EXPOSE 80 443
94+ EXPOSE 8080
9795
9896ENTRYPOINT ["/app/app-docker-entrypoint.sh" ]
9997
@@ -149,7 +147,7 @@ RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh && \
149147 ./dotnet-install.sh --channel 8.0 --quality preview --runtime aspnetcore && \
150148 rm dotnet-install.sh
151149
152- EXPOSE 80 443 9200
150+ EXPOSE 8080 9200
153151
154152ENTRYPOINT ["/app/docker-entrypoint.sh" ]
155153
@@ -205,7 +203,7 @@ RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh && \
205203 ./dotnet-install.sh --channel 8.0 --quality preview --runtime aspnetcore && \
206204 rm dotnet-install.sh
207205
208- EXPOSE 80 443 9200
206+ EXPOSE 8080 9200
209207
210208ENTRYPOINT ["/app/docker-entrypoint.sh" ]
211209
0 commit comments