Skip to content

Commit

Permalink
more sonar lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaed Parkar committed May 2, 2024
1 parent 81268a5 commit a2df84c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NotificationApi/NotificationApi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN dotnet publish "NotificationApi.csproj" -c Release -o /app/publish

# Create Final App.
FROM base AS final
RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y curl \
&& apt-get clean
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "NotificationApi.dll"]

0 comments on commit a2df84c

Please sign in to comment.