This commit is contained in:
Satria 2026-06-06 09:19:15 +07:00
commit 065c263398
3 changed files with 41 additions and 0 deletions

20
Dockerfile Normal file
View file

@ -0,0 +1,20 @@
FROM debian:trixie
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"]