From 19ad7f35574dec1b6062f5940e41e3a502fb2d1a Mon Sep 17 00:00:00 2001 From: nutchayut Date: Fri, 31 May 2024 01:34:21 +0700 Subject: [PATCH] bug fixed --- OCPP.Core.Server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OCPP.Core.Server/Dockerfile b/OCPP.Core.Server/Dockerfile index beaa263..bd4e92a 100644 --- a/OCPP.Core.Server/Dockerfile +++ b/OCPP.Core.Server/Dockerfile @@ -6,8 +6,8 @@ RUN dotnet publish OCPP.Core.Server/OCPP.Core.Server.csproj -o /publish #RUN dotnet build #RUN dotnet publish -o /publish --configuration Release ; # Publish Stage -RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends apt-utils -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libkrb53 +RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libkrb5-3 RUN DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/* FROM registry.71dev.com/dotnetaspnet:8.0 WORKDIR /app