10 lines
218 B
Docker
10 lines
218 B
Docker
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" ] |