Make specified working directory match Dockerfile (#16686)

This commit is contained in:
Sam Griffith 2023-02-09 10:27:54 -05:00 committed by GitHub
parent b35abe2a3d
commit 05d7522a8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0 as runtime
Next, specify the working directory for this stage.
```dockerfile
WORKDIR /app
WORKDIR /publish
```
Next, copy the /publish directory from the build-env stage into the runtime image.