-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '0d4e696b8dd4484e5574f36d675692e1fd4015b5'
- Loading branch information
Showing
4 changed files
with
13 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
# use "dotnet/sdk" to get the compiler and "ASPNETCORE_URLS" to compensate for the now missing env variable | ||
# use "dotnet/sdk" to get the compiler for extensions | ||
FROM mcr.microsoft.com/dotnet/sdk:9.0 | ||
WORKDIR /app | ||
COPY app . | ||
|
||
USER app | ||
|
||
# Create ~/.local/share so that it is definitely owned by | ||
# the app user and Nuget packages can be restore to the | ||
# ~.local/share/Nuget folder. Also there might be the need | ||
# for extensions to write to this folder. | ||
RUN mkdir -p /home/app/.local/share | ||
|
||
ENTRYPOINT ["./Nexus"] |
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,4 +1,4 @@ | ||
{ | ||
"version": "2.0.0", | ||
"suffix": "beta.43" | ||
"suffix": "beta.44" | ||
} |