From 33b8e8397d1750e8f756924f0b149fefdf1c3a5a Mon Sep 17 00:00:00 2001 From: Gaein nidb Date: Sat, 23 Nov 2024 22:17:15 +0800 Subject: [PATCH] update: dockerfile base image version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3bee57d..8aea7e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN dotnet publish "./CameraCaptureBot.Core/CameraCaptureBot.Core.csproj" \ --runtime linux-x64 \ -o /app/publish -FROM registry.cn-beijing.aliyuncs.com/nidb-cr/camera-capture-bot-base:7.0.2 AS final +FROM registry.cn-beijing.aliyuncs.com/nidb-cr/camera-capture-bot-base:7.0.2-26 AS final WORKDIR /app COPY --from=publish /app/publish . ENTRYPOINT ["./CameraCaptureBot.Core"]