Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base image and deployment guide #50

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DeploymentGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $RELEASE_VERSION="" # Fill in the value!
This repeats the steps above. Just putting together for easy copy/execution. Remember to update the release version!

```shell
$RELEASE_VERSION="20220310.03"
$RELEASE_VERSION="20240306.02"
$APP_NAME="stackbeauty"
$LOCATION="eastus2"
$ENVIRONMENT="dev"
Expand All @@ -75,7 +75,7 @@ docker push $REPO_IMAGE_TAG
az containerapp update -n $CONTAINER_APP_NAME `
-g $RESOURCE_GROUP `
--image "$REPO_IMAGE_TAG" `
--environment-variables "ApplicationInsights__ConnectionString=secretref:insights-connection-string"
--set-env-vars "ApplicationInsights__ConnectionString=secretref:insights-connection-string"
```

## New deployment
Expand Down
2 changes: 1 addition & 1 deletion src/dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM mcr.microsoft.com/dotnet/aspnet:6.0.2-alpine3.14-amd64
FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine
COPY ./app App/
WORKDIR /App
ENTRYPOINT ["dotnet", "NetStackBeautifier.WebAPI.dll"]
Expand Down
Loading