5 lines
117 B
Text
5 lines
117 B
Text
|
FROM debian:12
|
||
|
|
||
|
RUN apt update &&\
|
||
|
apt install git curl unzip -y &&\
|
||
|
curl -fsSL https://bun.sh/install | bash
|