From 66c6323b8457c9f3fd4aaac1f73a107256020563 Mon Sep 17 00:00:00 2001 From: Emily Matheys Date: Sun, 21 Jul 2024 10:55:23 +0300 Subject: [PATCH] libc debug symbols --- Dockerfile.debian | 2 +- Dockerfile.ubuntu | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index cce4b83..8cbe076 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -2,7 +2,7 @@ FROM debian:bookworm-slim AS base RUN apt update && apt install -y \ automake build-essential cmake curl git gnupg \ - lcov libssl-dev libtool lsb-release m4 openssl \ + lcov libc6-dbg libssl-dev libtool lsb-release m4 openssl \ peg python3 python3-pip python3-venv \ software-properties-common wget diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index fe00aea..383f2b2 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -2,9 +2,9 @@ FROM phusion/baseimage:jammy-1.0.4 AS base RUN apt update -y && apt install -y \ automake build-essential cmake curl docker-buildx \ - docker-compose-v2 git gnupg lcov libssl-dev libtool \ - lsb-release m4 openssl peg pkgconf python3 python3-pip \ - python3-venv software-properties-common wget + docker-compose-v2 git gnupg lcov libc6-dbg libssl-dev \ + libtool lsb-release m4 openssl peg pkgconf python3 \ + python3-pip python3-venv software-properties-common wget RUN apt upgrade -y