HardYanz commited on
Commit
b206c4d
0 Parent(s):

Duplicate from HardYanz/furta

Browse files
.gitattributes ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:11.3.1-base-ubuntu20.04
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive \
4
+ TZ=Europe/Paris
5
+
6
+ # Remove any third-party apt sources to avoid issues with expiring keys.
7
+ # Install some basic utilities
8
+ RUN rm -f /etc/apt/sources.list.d/*.list && \
9
+ apt-get update && apt-get install -y \
10
+ curl \
11
+ ca-certificates \
12
+ sudo \
13
+ wget \
14
+ git \
15
+ git-lfs \
16
+ zip \
17
+ unzip \
18
+ htop \
19
+ bzip2 \
20
+ libx11-6 \
21
+ build-essential \
22
+ libsndfile-dev \
23
+ software-properties-common \
24
+ && rm -rf /var/lib/apt/lists/*
25
+
26
+ ARG BUILD_DATE
27
+ ARG VERSION
28
+ ARG CODE_RELEASE
29
+ RUN \
30
+ echo "**** install openvscode-server runtime dependencies ****" && \
31
+ apt-get update && \
32
+ apt-get install -y \
33
+ jq \
34
+ libatomic1 \
35
+ nano \
36
+ net-tools \
37
+ netcat && \
38
+ echo "**** install openvscode-server ****" && \
39
+ if [ -z ${CODE_RELEASE+x} ]; then \
40
+ CODE_RELEASE=$(curl -sX GET "https://api.github.com/repos/gitpod-io/openvscode-server/releases/latest" \
41
+ | awk '/tag_name/{print $4;exit}' FS='[""]' \
42
+ | sed 's|^openvscode-server-v||'); \
43
+ fi && \
44
+ mkdir -p /app/openvscode-server && \
45
+ curl -o \
46
+ /tmp/openvscode-server.tar.gz -L \
47
+ "https://github.com/gitpod-io/openvscode-server/releases/download/openvscode-server-v${CODE_RELEASE}/openvscode-server-v${CODE_RELEASE}-linux-x64.tar.gz" && \
48
+ tar xf \
49
+ /tmp/openvscode-server.tar.gz -C \
50
+ /app/openvscode-server/ --strip-components=1 && \
51
+ echo "**** clean up ****" && \
52
+ apt-get clean && \
53
+ rm -rf \
54
+ /tmp/* \
55
+ /var/lib/apt/lists/* \
56
+ /var/tmp/*
57
+ COPY root/ /
58
+
59
+ RUN add-apt-repository ppa:flexiondotorg/nvtop && \
60
+ apt-get upgrade -y && \
61
+ apt-get install -y --no-install-recommends nvtop
62
+
63
+ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
64
+ apt-get install -y nodejs && \
65
+ npm install -g configurable-http-proxy
66
+
67
+ # Create a working directory
68
+ WORKDIR /app
69
+
70
+ # Create a non-root user and switch to it
71
+ RUN adduser --disabled-password --gecos '' --shell /bin/bash user \
72
+ && chown -R user:user /app
73
+ RUN echo "user ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-user
74
+ USER user
75
+
76
+ # All users can use /home/user as their home directory
77
+ ENV HOME=/home/user
78
+ RUN mkdir $HOME/.cache $HOME/.config \
79
+ && chmod -R 777 $HOME
80
+
81
+ # Set up the Conda environment
82
+ ENV CONDA_AUTO_UPDATE_CONDA=false \
83
+ PATH=$HOME/miniconda/bin:$PATH
84
+ RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh \
85
+ && chmod +x ~/miniconda.sh \
86
+ && ~/miniconda.sh -b -p ~/miniconda \
87
+ && rm ~/miniconda.sh \
88
+ && conda clean -ya
89
+
90
+ WORKDIR $HOME/app
91
+
92
+ #######################################
93
+ # Start root user section
94
+ #######################################
95
+
96
+ USER root
97
+
98
+ # User Debian packages
99
+ ## Security warning : Potential user code executed as root (build time)
100
+ RUN --mount=target=/root/packages.txt,source=packages.txt \
101
+ apt-get update && \
102
+ xargs -r -a /root/packages.txt apt-get install -y --no-install-recommends \
103
+ && rm -rf /var/lib/apt/lists/*
104
+
105
+ RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \
106
+ bash /root/on_startup.sh
107
+
108
+ #######################################
109
+ # End root user section
110
+ #######################################
111
+
112
+ USER user
113
+
114
+ # Python packages
115
+ RUN --mount=target=requirements.txt,source=requirements.txt \
116
+ pip install --no-cache-dir --upgrade -r requirements.txt
117
+
118
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
119
+ COPY --chown=user . $HOME/app
120
+
121
+ RUN chmod +x start_server.sh
122
+
123
+ ENV PYTHONUNBUFFERED=1 \
124
+ GRADIO_ALLOW_FLAGGING=never \
125
+ GRADIO_NUM_PORTS=1 \
126
+ GRADIO_SERVER_NAME=0.0.0.0 \
127
+ GRADIO_THEME=huggingface \
128
+ SYSTEM=spaces \
129
+ SHELL=/bin/bash
130
+
131
+ EXPOSE 7860 3000
132
+
133
+ CMD ["./start_server.sh"]
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Visual Studio Code
3
+ emoji: 💻🐳
4
+ colorFrom: red
5
+ colorTo: blue
6
+ sdk: docker
7
+ pinned: false
8
+ tags:
9
+ - vscode
10
+ duplicated_from: HardYanz/furta
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
on_startup.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Write some commands here that will run on root user before startup.
3
+ # For example, to clone transformers and install it in dev mode:
4
+ # git clone https://github.com/huggingface/transformers.git
5
+ # cd transformers && pip install -e ".[dev]"
packages.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ tree
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ # jupyterlab
root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-openvscode-server ADDED
File without changes
root/etc/s6-overlay/s6-rc.d/init-openvscode-server/dependencies.d/init-config ADDED
File without changes
root/etc/s6-overlay/s6-rc.d/init-openvscode-server/run ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/with-contenv bash
2
+
3
+ mkdir -p /config/{workspace,.ssh}
4
+
5
+ if [ -n "${SUDO_PASSWORD}" ] || [ -n "${SUDO_PASSWORD_HASH}" ]; then
6
+ echo "setting up sudo access"
7
+ if ! grep -q 'abc' /etc/sudoers; then
8
+ echo "adding abc to sudoers"
9
+ echo "abc ALL=(ALL:ALL) ALL" >> /etc/sudoers
10
+ fi
11
+ if [ -n "${SUDO_PASSWORD_HASH}" ]; then
12
+ echo "setting sudo password using sudo password hash"
13
+ sed -i "s|^abc:\!:|abc:${SUDO_PASSWORD_HASH}:|" /etc/shadow
14
+ else
15
+ echo "setting sudo password using SUDO_PASSWORD env var"
16
+ echo -e "${SUDO_PASSWORD}\n${SUDO_PASSWORD}" | passwd abc
17
+ fi
18
+ fi
19
+
20
+ [[ ! -f /config/.bashrc ]] && \
21
+ cp /root/.bashrc /config/.bashrc
22
+ [[ ! -f /config/.profile ]] && \
23
+ cp /root/.profile /config/.profile
24
+
25
+ # fix permissions (ignore contents of /config/workspace)
26
+ echo "setting permissions::config"
27
+ find /config -path /config/workspace -prune -o -exec chown abc:abc {} +
28
+ chown abc:abc /config/workspace
29
+ echo "setting permissions::app"
30
+ chown -R abc:abc /app/openvscode-server
31
+
32
+ chmod 700 /config/.ssh
33
+ if [ -n "$(ls -A /config/.ssh)" ]; then
34
+ chmod 600 /config/.ssh/*
35
+ fi
root/etc/s6-overlay/s6-rc.d/init-openvscode-server/type ADDED
@@ -0,0 +1 @@
 
 
1
+ oneshot
root/etc/s6-overlay/s6-rc.d/init-openvscode-server/up ADDED
@@ -0,0 +1 @@
 
 
1
+ /etc/s6-overlay/s6-rc.d/init-openvscode-server/run
root/etc/s6-overlay/s6-rc.d/svc-openvscode-server/dependencies.d/init-services ADDED
File without changes
root/etc/s6-overlay/s6-rc.d/svc-openvscode-server/notification-fd ADDED
@@ -0,0 +1 @@
 
 
1
+ 3
root/etc/s6-overlay/s6-rc.d/svc-openvscode-server/run ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/with-contenv bash
2
+
3
+ if [ -n "$CONNECTION_SECRET" ]; then
4
+ CODE_ARGS="${CODE_ARGS} --connection-secret ${CONNECTION_SECRET}"
5
+ echo "Using connection secret from ${CONNECTION_SECRET}"
6
+ elif [ -n "$CONNECTION_TOKEN" ]; then
7
+ CODE_ARGS="${CODE_ARGS} --connection-token ${CONNECTION_TOKEN}"
8
+ echo "Using connection token ${CONNECTION_TOKEN}"
9
+ else
10
+ CODE_ARGS="${CODE_ARGS} --without-connection-token"
11
+ echo "**** No connection token is set ****"
12
+ fi
13
+
14
+ exec \
15
+ s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 3000" \
16
+ cd /app/openvscode-server s6-setuidgid abc \
17
+ /app/openvscode-server/bin/openvscode-server \
18
+ --host 0.0.0.0 \
19
+ --port 3000 \
20
+ --disable-telemetry \
21
+ ${CODE_ARGS}
root/etc/s6-overlay/s6-rc.d/svc-openvscode-server/type ADDED
@@ -0,0 +1 @@
 
 
1
+ longrun
root/etc/s6-overlay/s6-rc.d/user/contents.d/init-openvscode-server ADDED
File without changes
root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-openvscode-server ADDED
File without changes
root/usr/local/bin/install-extension ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/with-contenv bash
2
+ # shellcheck shell=bash
3
+
4
+ _install=(/app/openvscode-server/bin/openvscode-server "--install-extension")
5
+
6
+ if [ "$(whoami)" == "abc" ]; then
7
+ "${_install[@]}" "$@"
8
+ else
9
+ s6-setuidgid abc "${_install[@]}" "$@"
10
+ fi
start_server.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo "Starting VSCode Server..."
4
+
5
+ exec /app/openvscode-server/bin/openvscode-server --host 0.0.0.0 --port 7860 --without-connection-token \"${@}\" --