Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit ff1ccbd

Browse files
committed
chore(dockerfile): update archlinux packages
https://hub.docker.com/_/archlinux/?tab=description says: "Arch Linux is a rolling release distribution, so a full update is recommended when installing new packages. In other words, we suggest to either execute RUN pacman -Syu immediately after your FROM statement or as soon as you docker run into a container." Without this there are some errors about LIBC_2.36 when installing new packages brings in packages depending on it, but the installed libc is still 2.35. Signed-off-by: Edwin Török <edwin@etorok.net>
1 parent a09454d commit ff1ccbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV \
1616
PATH="/home/doom/.local/bin:${PATH}"
1717

1818
# Update repositories
19-
RUN pacman -Syy
19+
RUN pacman -Syu --noconfirm
2020

2121
# Install neovim
2222
RUN pacman -Sy neovim --noconfirm

0 commit comments

Comments
 (0)