Skip to content

Commit 90b3ba7

Browse files
committed
chore: try to add static files into pods
1 parent 4cc152c commit 90b3ba7

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

src/Communication/Communication.Api/Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,6 @@ COPY ["src/Communication/Communication.Api/.", "src/Communication/Communication.
3737
COPY ["src/Communication/Communication/.", "src/Communication/Communication/"]
3838
COPY ["src/Communication/Communication.FunctionalTests/.", "src/Communication/Communication.FunctionalTests/"]
3939

40-
## Build API
41-
# WORKDIR "/src/src/Communication/Communication.Api"
42-
# RUN dotnet build "Communication.Api.csproj" -c Release -o /app/build --no-restore
43-
44-
# ## Build Functional Tests
45-
# WORKDIR "/src/src/Communication/Communication.FunctionalTests"
46-
# RUN dotnet build "Communication.FunctionalTests.csproj" -c Release -o /app/build --no-restore
47-
4840
# Step 2: Publish
4941
FROM build AS publish
5042
WORKDIR "/src/src/Communication/Communication.Api"

src/Communication/Communication/Communication.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<ItemGroup>
3131
<Content Include="EmailTemplates\Handlebars\**">
3232
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
33+
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
3334
</Content>
3435
</ItemGroup>
3536

src/PersonalData/PersonalData/Data/Audit/ActivityLogBehavior.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task<TResponse> Handle(TRequest request, RequestHandlerDelegate<TRe
6262

6363
if (createLogResponse.Succeeded)
6464
{
65-
_logger.LogError("ActivityLogBehavior - RequestType={Request} - ResponseType={Response} - Succeeded",
65+
_logger.LogInformation("ActivityLogBehavior - RequestType={Request} - ResponseType={Response} - Succeeded",
6666
typeof(TRequest), typeof(TResponse));
6767

6868
return response;

0 commit comments

Comments
 (0)