FROM gitpod/openvscode-server:latest USER root RUN apt-get update -y && apt-get upgrade -y && apt-get install -y sudo && apt-get install -y python3-pip && pip3 install --upgrade pip RUN apt-get update -y && apt-get upgrade -y && apt-get install -y sudo && apt-get install -y openssh-client RUN apt-get install -y curl gnupg wget htop sudo git git-lfs software-properties-common build-essential libgl1 zip unzip #RUN curl -sL https://deb.nodesource.com/setup_21.x | sudo -E bash - #RUN apt-get install nodejs -y WORKDIR /home/workspace/ EXPOSE 7860 #RUN chown -R openvscode-server:openvscode-server /root ENTRYPOINT [ "/bin/sh", "-c", "exec ${OPENVSCODE_SERVER_ROOT}/bin/openvscode-server --host 0.0.0.0 --port 7860 --privileged gitpod/openvscode-server --without-connection-token \"${@}\"", "--" ]