From 71c4a67a1324da43fe7e9c04627170c9d621ee85 Mon Sep 17 00:00:00 2001 From: Kirill Date: Wed, 24 Apr 2024 14:33:03 +0400 Subject: [PATCH] Update Dockerfile base image --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03940495de..02aaaa2918 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,12 @@ # Stage 1: Build golang dependencies and binaries -FROM ubuntu:23.10 AS build +FROM ubuntu:24.04 AS build ARG VM_DEBUG # Install Alpine Dependencies -RUN apt-get update && \ +# removal is temp. to fix https://github.com/orgs/community/discussions/120966 +RUN rm /etc/apt/sources.list.d/microsoft-prod.list && \ + apt-get update && \ apt-get install build-essential cargo git golang upx-ucl libjemalloc-dev libjemalloc2 -y WORKDIR /app