File size: 430 Bytes
1f72d3b
 
cb8cd25
1f72d3b
 
 
 
 
 
 
 
 
 
 
cb8cd25
 
1f72d3b
cb8cd25
 
1f72d3b
4834ef1
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Base image
FROM ubuntu:20.04

# Install dependencies
RUN apt-get update && apt-get install -y \
    curl \
    wget \
    software-properties-common \
    && apt-get clean

# Install code-server
RUN curl -fsSL https://code-server.dev/install.sh | bash

# Create a user
RUN useradd -m -u 1000 user
USER user
WORKDIR /home/user


# Run code-server
EXPOSE 7860
CMD ["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "none"]