From 008b73bba79961d0f12dfb855f6811ee464c420a Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Wed, 9 Apr 2025 15:51:58 +0300 Subject: [PATCH] [#10] dotnet: Add GNU Make to container image We will probably add a Makefile to frostfs-sdk-csharp soon. Signed-off-by: Vitaliy Potyarkin --- dotnet-8.0/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotnet-8.0/Dockerfile b/dotnet-8.0/Dockerfile index 31cdadca2..98135925b 100644 --- a/dotnet-8.0/Dockerfile +++ b/dotnet-8.0/Dockerfile @@ -2,3 +2,7 @@ FROM docker.io/node:20-bookworm-slim as node FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim COPY --from=node /usr/local /usr/local COPY --from=node /opt /opt +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + make && \ + rm -rf /var/lib/apt/lists/*