Skip to content

Commit

Permalink
using dotnet sdk for dev cert
Browse files Browse the repository at this point in the history
  • Loading branch information
reven committed Mar 29, 2023
1 parent c3f5754 commit f561b56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN dotnet restore
RUN dotnet publish -c Release -o out

# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:6.0
FROM mcr.microsoft.com/dotnet/sdk:6.0
WORKDIR /app
COPY --from=build-env /app/out .
COPY /Apps /app/Apps
Expand Down
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ if [[ -z "${protocol}" ]]; then
protocol=http
fi

printf "Starting Fenrus at ${protocol}://+:${port}"
printf "Starting Fenrus at ${protocol}://+:${port}\n"
exec dotnet Fenrus.dll --urls=${protocol}://+:${port}

0 comments on commit f561b56

Please sign in to comment.