You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Dockerfile currently uses the literal string 'BUILD_CONFIGURATION' instead of interpolating the environment variable value in the dotnet publish command.
Current Issue
RUN dotnet publish "./OsmoDoc.API.csproj" -c BUILD_CONFIGURATION -o /app/out
Required Fix
RUN dotnet publish "./OsmoDoc.API.csproj" -c $BUILD_CONFIGURATION -o /app/out
Context
This issue was identified during PR review but deferred to a separate PR to keep the current PR focused on the DocumentService to OsmoDoc renaming.