20 lines
393 B
Docker
20 lines
393 B
Docker
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"]
|