Skip to content

Commit

Permalink
feat: rename binary
Browse files Browse the repository at this point in the history
BREAKING CHANGE: old binary is no longer available
  • Loading branch information
cyberhck committed Aug 12, 2022
1 parent f579f2e commit d2a3970
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ ARG VERSION
ENV APP_VERSION="${VERSION}"
WORKDIR /app
COPY --from=build /app/out/ ./
RUN chmod +x ./key_management_service && apt-get update && apt-get install -y --no-install-recommends libicu-dev openssl && rm -Rf /var/lib/apt/lists/* && apt-get clean
RUN chmod +x ./key-management-service && apt-get update && apt-get install -y --no-install-recommends libicu-dev openssl && rm -Rf /var/lib/apt/lists/* && apt-get clean
ENV ASPNETCORE_URLS=http://+:5000
EXPOSE 5000
STOPSIGNAL SIGTERM
CMD ["./key_management_service", "server", "start"]
CMD ["./key-management-service", "server", "start"]
2 changes: 1 addition & 1 deletion Startup/Startup.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<AssemblyName>key_management_service</AssemblyName>
<AssemblyName>key-management-service</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit d2a3970

Please sign in to comment.