forked from Lanjelin/nvim-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
43 lines (38 loc) · 705 Bytes
/
Dockerfile
File metadata and controls
43 lines (38 loc) · 705 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
40
41
42
43
FROM archlinux:base
ENV PATH="${PATH}:/root/.local/bin"
RUN \
pacman -Syu --noconfirm && \
pacman -S --noconfirm \
fd \
gcc \
fzf \
git \
make \
curl \
wget \
bash \
gzip \
unzip \
neovim \
ripgrep \
lazygit \
python-pip \
pkg-config \
base-devel \
go \
npm \
ruby \
yarn \
cargo \
python3 \
zsh \
ttyd && \
pacman -Scc --noconfirm && \
wget -q -O /usr/sbin/ttyd.nerd https://github.com/Lanjelin/nerd-ttyd/releases/download/1.7.7/ttyd.x86_64 && \
chmod +x /usr/sbin/ttyd.nerd && \
mkdir -p /edit
COPY entrypoint.sh .
VOLUME /root
WORKDIR /root
EXPOSE 7681
CMD ["/bin/bash", "/entrypoint.sh"]