7 lines
130 B
Docker
7 lines
130 B
Docker
FROM node:lts
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt update &&\
|
|
apt install git curl unzip -y &&\
|
|
curl -fsSL https://bun.sh/install | bash |