File size: 3,013 Bytes
0e95018
 
8d7f4df
0e95018
 
8d7f4df
338df9f
 
 
eaa6eb5
338df9f
 
bce13d8
338df9f
 
 
 
 
 
 
 
 
319dae3
338df9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319dae3
338df9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0e95018
 
8d7f4df
3868279
00a7819
0e95018
3868279
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Use an official Node.js runtime as a parent image
FROM codercom/code-server:latest

# Set the environment variables for code-server
ENV PASSWORD=123456

ENV DEBIAN_FRONTEND=noninteractive \
	TZ=Asia/Shanghai

USER root
# Remove any third-party apt sources to avoid issues with expiring keys.
# Install some basic utilities
RUN echo 'root:root' | chpasswd
RUN rm -f /etc/apt/sources.list.d/*.list && \
    apt-get update && apt-get install -y --no-install-recommends \
    curl \
    ca-certificates \
    sudo \
    git \
    wget \
    aria2 \
    axel \
    python3 \
    procps \
    git-lfs \
    zip \
    unzip \
    htop \
    vim \
    nano \
    bzip2 \
    libx11-6 \
    build-essential \
    libsndfile-dev \
    software-properties-common \
 && rm -rf /var/lib/apt/lists/*

RUN curl -sL https://deb.nodesource.com/setup_21.x  | bash - && \
    apt-get install -y nodejs && \
    npm install -g configurable-http-proxy

# Create a working directory
WORKDIR /app

# All users can use /home/coder as their home directory
ENV HOME=/home/coder
RUN mkdir $HOME/.cache $HOME/.config \
 && chmod -R 777 $HOME

# Set up the Conda environment
ENV CONDA_AUTO_UPDATE_CONDA=false \
    PATH=$HOME/miniconda/bin:$PATH
RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh \
 && chmod +x ~/miniconda.sh \
 && ~/miniconda.sh -b -p ~/miniconda \
 && rm ~/miniconda.sh \
 && conda clean -ya

WORKDIR $HOME/app

#######################################
# Start root user section
#######################################

USER root

# User Debian packages
## Security warning : Potential user code executed as root (build time)
RUN --mount=target=/root/packages.txt,source=packages.txt \
    apt-get update && \
    xargs -r -a /root/packages.txt apt-get install -y --no-install-recommends \
    && rm -rf /var/lib/apt/lists/*

RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \
	bash /root/on_startup.sh

RUN mkdir /data && chown coder:coder /data

#######################################
# End root user section
#######################################

USER coder

# Python packages
RUN --mount=target=requirements.txt,source=requirements.txt \
    pip install --no-cache-dir --upgrade -r requirements.txt && \
    pip install glances modelscope huggingface_hub

# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=coder . $HOME/app

RUN chmod +x start_server.sh

COPY --chown=coder login.html /home/coder/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html

ENV PYTHONUNBUFFERED=1 \
	GRADIO_ALLOW_FLAGGING=never \
	GRADIO_NUM_PORTS=1 \
	GRADIO_SERVER_NAME=0.0.0.0 \
	GRADIO_THEME=huggingface \
	SYSTEM=spaces \
	SHELL=/bin/bash

# Expose the port on which code-server will run
EXPOSE 8080

WORKDIR /data
RUN echo "kill -SIGTERM 1" >/data/stop.sh
# Run code-server
CMD ["code-server /data", "--bind-addr", "0.0.0.0:8080", "--auth", "password", "--locale", "zh-CN"]