CoolFace
Apppublic

TogetherAI/Visual_Studio_Pod

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM gitpod/openvscode-server:latest2 3USER root4 5RUN apt-get update -y && apt-get upgrade -y && apt-get install -y sudo && apt-get install -y python3-pip && pip3 install --upgrade pip6RUN apt-get install -y curl gnupg wget htop sudo git git-lfs software-properties-common build-essential libgl1 zip unzip7 8RUN add-apt-repository ppa:flexiondotorg/nvtop9RUN apt-get upgrade -y10RUN apt-get install -y nvtop11 12RUN pip3 install pandas scipy matplotlib && \13    pip3 install ipywidgets && \14    pip3 install torch torchvision torchaudio15 16USER openvscode-server17 18EXPOSE 786019 20ENTRYPOINT [ "/bin/sh", "-c", "exec ${OPENVSCODE_SERVER_ROOT}/bin/openvscode-server --host 0.0.0.0 --port 7860 --without-connection-token \"${@}\"", "--" ]