diff --git a/code-server/Dockerfile b/code-server/Dockerfile new file mode 100644 index 0000000..284e22d --- /dev/null +++ b/code-server/Dockerfile @@ -0,0 +1,10 @@ +FROM registry.cn-qingdao.aliyuncs.com/yuchat/ubuntu:24.04.base +WORKDIR /apps + +RUN apt update +RUN apt install -y curl git +RUN curl -fsSL https://code-server.dev/install.sh | sh + +EXPOSE 8080 + +ENTRYPOINT [ "code-server" ] \ No newline at end of file