-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·39 lines (35 loc) · 955 Bytes
/
Dockerfile
File metadata and controls
executable file
·39 lines (35 loc) · 955 Bytes
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
FROM lscr.io/linuxserver/vscodium:latest
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
python-is-python3 \
python3-pip \
terminator \
scite \
tint2 \
rofi \
wget \
libfuse2 \
dbus-x11 \
gnome-keyring \
libsecret-1-0 \
git \
gh \
gdb \
htop \
dnsutils \
net-tools \
iputils-ping \
mc \
nano \
xz-utils \
unzip; \
rm -rf /var/lib/apt/lists/*;
COPY ./src /
RUN chmod +x /usr/bin/codium && \
ln -s /usr/bin/codium /usr/bin/code-server && \
chmod +x /defaults/rofi/run && \
mkdir -p /opt/google/chrome && \
ln -s /usr/bin/chromium /opt/google/chrome/chrome && \
/usr/bin/sed -i 's|Exec=/usr/share/codium/codium|Exec=/usr/bin/codium|g' /usr/share/applications/codium.desktop && \
find /etc/s6-overlay/s6-rc.d/ -name "run" -type f -exec chmod +x {} \;