From 6104af0d70cdbdeec8589e727154490a625904bb Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 1 Feb 2023 23:47:07 +0000 Subject: [PATCH] Smaller docker image. Why not. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4162 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f7be0f2f..fd71c25b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,10 @@ FROM bitnami/minideb:bullseye AS build RUN apt-get update && \ apt-get install -y --no-install-recommends \ - build-essential \ - libssl-dev + gcc \ + libc6-dev \ + libssl-dev \ + make COPY . /app RUN make -C /app -j $(nproc) release