MPOiA/vps
0
1FROM ubuntu:22.042 3ENV DEBIAN_FRONTEND=noninteractive4ENV HOSTNAME=Lightingplays5 6# ---- Base packages ----7RUN apt-get update && apt-get install -y --no-install-recommends \8 ca-certificates \9 curl \10 wget \11 git \12 sudo \13 docker.io \14 htop \15 btop \16 neovim \17 lsof \18 qemu-system \19 cloud-image-utils \20 && rm -rf /var/lib/apt/lists/*21 22# ---- Install code-server ----23RUN curl -fsSL https://code-server.dev/install.sh | sh24 25# ---- Workspace ----26WORKDIR /workspace27 28EXPOSE 786029 30CMD ["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "none"]