From b0921447e175973f08e9b1a97ec5ae70bd65f645 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Mon, 17 Nov 2025 16:26:37 +1000 Subject: [PATCH] fix(api): dockerfile --- PARR.API/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PARR.API/Dockerfile b/PARR.API/Dockerfile index 19ef2ccb..a5f0e4d6 100644 --- a/PARR.API/Dockerfile +++ b/PARR.API/Dockerfile @@ -1,10 +1,10 @@ #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FROM 10.99.253.167:8090/dotnet/aspnet:7.0 AS base -# CURL install -RUN rm /etc/apt/sources.list.d/debian.sources && \ - echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bookworm main" > /etc/apt/sources.list && \ - echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bookworm-updates main" >> /etc/apt/sources.list && \ +# CURL install (bullseye - for net core 7!!!) +RUN rm /etc/apt/sources.list.d/* && \ + echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bullseye main" > /etc/apt/sources.list && \ + echo "deb [trusted=yes] http://10.99.253.167:8081/repository/apt-proxy bullseye-updates main" >> /etc/apt/sources.list && \ apt-get update && \ apt-get install -y curl && \ rm -rf /var/lib/apt/lists/*