-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Admin UI and Consumer API: containers run on wrong ports (#427)
* fix: change ports to 80 * chore: rename Admin UI ClientApp Dockerfile to Dockerfile.debug * chore: don't set ASPNETCORE_URLS env var in docker-compose files * chore: don't set ASPNETCORE_URLS in adminui deployment * chore: set correct repo label in Challenges.Jobs.Cleanup Dockerfile * chore: set correct env variables in Dockerfile.debug * chore: try to use other builder * refactor: use new builder * chore: revert usage of other builder * fix: set env ar ASPNETCORE_URLS in all Dockerfiles * fix: replace ASPNETCORE_PORT with ASPNETCORE_URLS for ConsumerApi * chore: remove redundant ASPNETCORE_URLS from consumer api
- Loading branch information
Showing
9 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 | ||
|
||
EXPOSE 80 | ||
|
||
WORKDIR /app | ||
|
||
ENV ASPNETCORE_URLS=http://0.0.0.0:80 | ||
|
||
ENTRYPOINT ["dotnet", "watch", "--non-interactive", "--project", "ConsumerApi/ConsumerApi.csproj"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters