build(docker): add libc6-dev to build dependencies

This commit is contained in:
2026-07-29 22:33:41 +05:00
parent 23f6460617
commit 32a319a836
+1 -1
View File
@@ -8,7 +8,7 @@ WORKDIR /app
# Install build tools for C extensions (e.g. TgCrypto), then clean up
RUN apt-get update && \
apt-get install -y --no-install-recommends gcc && \
apt-get install -y --no-install-recommends gcc libc6-dev && \
rm -rf /var/lib/apt/lists/*
# Install deps first — layer cache reuse on code-only changes