From 66f9c1812a8ec451ac6551f7747aae120e740ca4 Mon Sep 17 00:00:00 2001 From: nexryai <61890205+nexryai@users.noreply.github.com> Date: Wed, 7 Jan 2026 23:56:44 +0900 Subject: [PATCH] Create Dockerfile --- .devcontainer/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..b5fb2c4 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:rolling + +RUN apt-get update && \ + apt-get install -y git curl && \ + su ubuntu sh -c 'curl -fsSL https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -'