When following the Complete-Setup guide to setup a docker environment, it produces the following error:
When attempting to run ./glibc_run.sh 2.30 ./malloc_playground -u -r or just ./malloc_playground it returns: version `GLIBC_2.34' not found, same as Issue #169
The issue here is that we are using the Dockerfile from https://github.com/pwndbg/pwndbg which in turn uses ubuntu:22.04.
Workaround
After the command git clone https://github.com/pwndbg/pwndbg edit pwndbg/Dockerfile and replace jammy (ubuntu 22.04) with focal (ubuntu 20.04)
-ARG image=mcr.microsoft.com/devcontainers/base:jammy
+ARG image=mcr.microsoft.com/devcontainers/base:focal