updated package manger for debian

This commit is contained in:
Arunavo Ray
2025-12-04 18:44:36 +05:30
parent 8dc7ae8bfc
commit 2a08ae0b21

View File

@@ -2,7 +2,9 @@
FROM oven/bun:1.3.3-debian AS base
WORKDIR /app
RUN apk add --no-cache libc6-compat python3 make g++ gcc wget sqlite openssl ca-certificates
RUN apt-get update && apt-get install -y --no-install-recommends \
python3 make g++ gcc wget sqlite3 openssl ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# ----------------------------
FROM base AS deps