Skip to content

Commit

Permalink
Fixed remaining cdms references
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Shimmings committed Dec 4, 2024
1 parent 245435a commit 6ca45ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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 CdmsBackend.Test
RUN dotnet test BtmsBackend.Test

FROM build AS publish
RUN dotnet publish CdmsBackend -c Release -o /app/publish /p:UseAppHost=false
RUN dotnet publish BtmsBackend -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", "CdmsBackend.dll"]
ENTRYPOINT ["dotnet", "BtmsBackend.dll"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# cdms-backend
# BTMS Backend

Core delivery C# ASP.NET backend template.

Expand Down Expand Up @@ -37,7 +37,7 @@ dotnet test

Run CDP-Deployments application:
```bash
dotnet run --project CdmsBackend --launch-profile Development
dotnet run --project BtmsBackend --launch-profile Development
```

### SonarCloud
Expand Down

0 comments on commit 6ca45ae

Please sign in to comment.