From dd3ba559f7f1f8348c52a85f3587bbb951c24a0f Mon Sep 17 00:00:00 2001 From: chatmoo <924133662@qq.com> Date: Tue, 23 May 2023 21:41:19 +0800 Subject: [PATCH] add develop env --- build-image/ubuntu/Dockerfile_develop | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 build-image/ubuntu/Dockerfile_develop diff --git a/build-image/ubuntu/Dockerfile_develop b/build-image/ubuntu/Dockerfile_develop new file mode 100644 index 0000000..c5c8a8a --- /dev/null +++ b/build-image/ubuntu/Dockerfile_develop @@ -0,0 +1,7 @@ +FROM ubuntu:22.04 + +LABEL smallkoudai + +RUN apt update && apt install -y vim cmake pkg-config zsh git git-lfs curl && \ + chsh -s /bin/zsh && \ + echo y|sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"