diff options
author | Kuklin István Alexander | 2022-06-19 20:22:20 +0200 |
---|---|---|
committer | Kuklin István Alexander | 2022-06-19 20:22:20 +0200 |
commit | 445f1780bb7176e1e0daebf510a2f4bdca7ca5ba (patch) | |
tree | fa5bf1151237f87a62ba41671062cc972bfdc290 /Dockerfile | |
parent | edaf18ecc5c0e2ad53dfbd0b09334c3513de55df (diff) | |
download | packages-445f1780bb7176e1e0daebf510a2f4bdca7ca5ba.tar.gz packages-445f1780bb7176e1e0daebf510a2f4bdca7ca5ba.tar.bz2 packages-445f1780bb7176e1e0daebf510a2f4bdca7ca5ba.zip |
2.1.53
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 9422cfc..0000000 --- a/Dockerfile +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | FROM archlinux | ||
2 | |||
3 | # https://serverfault.com/a/1053273 | ||
4 | # TEMP-FIX for pacman issue | ||
5 | RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst \ | ||
6 | && curl -LO "https://raw.githubusercontent.com/sickcodes/Docker-OSX/master/${patched_glibc}" \ | ||
7 | && bsdtar -C / -xvf "${patched_glibc}" || echo "Everything is fine." | ||
8 | # TEMP-FIX for pacman issue | ||
9 | |||
10 | RUN pacman -Sy --noconfirm sudo fakeroot base-devel | ||
11 | RUN pacman -S --noconfirm git | ||
12 | RUN pacman -S --noconfirm vim | ||
13 | COPY docker.sudoers /etc/sudoers.d/wheel | ||
14 | RUN useradd user | ||
15 | RUN usermod -a user -G wheel | ||
16 | |||