FROM debian:trixie
LABEL org.opencontainers.image.source=https://git.satr14.my.id/satr14/aio-container
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y --no-install-recommends \
    bash \
    coreutils \
    curl \
    git \
    openssh-client \
    nodejs \
    npm \
    python3 \
    python-is-python3 \
    unzip \
    && rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:${PATH}"

CMD ["bash"]
