Skip to content

Commit

Permalink
Corrected new class names
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Shimmings committed Dec 4, 2024
1 parent aab78aa commit 6b84504
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ COPY . .
WORKDIR "/src"

# unit test and code coverage
RUN dotnet test BtmsBackend.Test
RUN dotnet test Btms.Backend.Test

FROM build AS publish
RUN dotnet publish BtmsBackend -c Release -o /app/publish /p:UseAppHost=false
RUN dotnet publish Btms.Backend -c Release -o /app/publish /p:UseAppHost=false


ENV ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
Expand All @@ -32,4 +32,4 @@ FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
EXPOSE 8085
ENTRYPOINT ["dotnet", "BtmsBackend.dll"]
ENTRYPOINT ["dotnet", "Btms.Backend.dll"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dotnet test

Run CDP-Deployments application:
```bash
dotnet run --project BtmsBackend --launch-profile Development
dotnet run --project Btms.Backend --launch-profile Development
```

### SonarCloud
Expand Down

0 comments on commit 6b84504

Please sign in to comment.