Skip to content

Commit

Permalink
fix kms gcp excpetion (#252)
Browse files Browse the repository at this point in the history
* fix kms gcp excpetion

* version bump
  • Loading branch information
omerlh authored Jul 16, 2019
1 parent 25e8b56 commit cab866c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ COPY ./src/key-managment ./key-managment
RUN dotnet publish $PROJECT_NAME/$PROJECT_NAME.csproj -c Release -o ./obj/Docker/publish

# Build runtime image
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.6-alpine AS release
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.6-alpine AS release
ARG PROJECT_NAME=decrypt-api
ENV PROJECT_NAME_ENV=$PROJECT_NAME
RUN addgroup dotnet && adduser -D -G dotnet -h /home/dotnet dotnet
RUN addgroup dotnet && \
adduser -D -G dotnet -h /home/dotnet dotnet && \
apk add --update --no-cahce libc6-compat

USER dotnet
WORKDIR /home/dotnet/app
ENV ASPNETCORE_URLS=http://+:9999
Expand Down
2 changes: 1 addition & 1 deletion src/crd-controller/crd-controller.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>0.4.4.0</Version>
<Version>0.4.4.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/decrypt-api/decrypt-api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<Version>0.4.4.0</Version>
<Version>0.4.4.1</Version>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
Expand Down
2 changes: 1 addition & 1 deletion src/encrypt-api/encrypt-api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<Version>0.4.4.0</Version>
<Version>0.4.4.1</Version>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
Expand Down

0 comments on commit cab866c

Please sign in to comment.