-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerfile
More file actions
65 lines (57 loc) · 1.23 KB
/
Containerfile
File metadata and controls
65 lines (57 loc) · 1.23 KB
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
FROM greyltc/archlinux-aur:latest
# Restore man pages: Comment out NoExtract, install man-db, and reinstall existing packages
RUN sed -i 's/^NoExtract/#NoExtract/g' /etc/pacman.conf && \
pacman -Ql | grep '/usr/share/man/' | cut -d' ' -f1 | sort -u | grep -v "paru" | \
sudo pacman -Syu --noconfirm man-db man-pages -
RUN pacman -Syu --noconfirm \
git \
git-lfs \
rsync \
rclone \
stow \
zip \
unzip \
ncdu \
tree \
htop \
tmux \
screen \
bash-completion \
shellcheck \
wget \
openssh \
base-devel \
python-pip \
python-pipx \
npm \
deno \
rustup \
xdg-utils \
ripgrep \
fd \
jq \
fzf \
neovim \
wl-clipboard \
firefox \
foot \
foot-terminfo \
ttf-hack-nerd \
adobe-source-code-pro-fonts
ENV XDG_RUNTIME_DIR=/tmp
ENV WAYLAND_DISPLAY=wayland-0
ENV MOZ_ENABLE_WAYLAND=1
ENV BROWSER=firefox
COPY main/ /home/dev/
COPY private/ /home/dev/
RUN mkdir -p /home/dev/.config && \
printf "\
[Default Applications]\n\
text/html=firefox.desktop\n\
x-scheme-handler/http=firefox.desktop\n\
x-scheme-handler/https=firefox.desktop\n\
" > /home/dev/.config/mimeapps.list && \
chmod -R 777 /home/dev
WORKDIR /home/dev
ENTRYPOINT ["/usr/bin/dbus-run-session"]
CMD ["/usr/bin/tmux"]