Skip to content

Commit

Permalink
Merge pull request #50 from xiaomi7732/dev/saars/release-new-build
Browse files Browse the repository at this point in the history
Update base image and deployment guide
  • Loading branch information
xiaomi7732 authored Mar 7, 2024
2 parents 1d40172 + ad7638c commit a70c948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit a70c948

Please sign in to comment.