Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,7 +8,7 @@ RUN cat /root/etc-tmp/makepkg.conf >> /etc/makepkg.conf
|
|
8 |
|
9 |
# install packages
|
10 |
RUN pacman -Syu --noconfirm --overwrite '*'
|
11 |
-
RUN rm -rf /var/cache/pacman/pkg
|
12 |
RUN pacman -S base-devel ttyd git pacman-contrib mold ccache yay pkgconf tree \
|
13 |
lrzsz libsixel lsix \
|
14 |
cmake python-pip uv \
|
@@ -17,7 +17,7 @@ RUN pacman -S base-devel ttyd git pacman-contrib mold ccache yay pkgconf tree \
|
|
17 |
btop fastfetch \
|
18 |
neovim ripgrep \
|
19 |
--noconfirm --overwrite '*'
|
20 |
-
RUN rm -rf /var/cache/pacman/pkg
|
21 |
|
22 |
# create non-root user
|
23 |
RUN useradd -m -u 1000 -s /bin/fish ${USERNAME:-orion}
|
|
|
8 |
|
9 |
# install packages
|
10 |
RUN pacman -Syu --noconfirm --overwrite '*'
|
11 |
+
RUN rm -rf /var/cache/pacman/pkg/* && rm -rf /var/lib/pacman/*
|
12 |
RUN pacman -S base-devel ttyd git pacman-contrib mold ccache yay pkgconf tree \
|
13 |
lrzsz libsixel lsix \
|
14 |
cmake python-pip uv \
|
|
|
17 |
btop fastfetch \
|
18 |
neovim ripgrep \
|
19 |
--noconfirm --overwrite '*'
|
20 |
+
RUN rm -rf /var/cache/pacman/pkg/* && rm -rf /var/lib/pacman/*
|
21 |
|
22 |
# create non-root user
|
23 |
RUN useradd -m -u 1000 -s /bin/fish ${USERNAME:-orion}
|