diff options
-rw-r--r-- | core/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Dockerfile b/core/Dockerfile index d0e9aa6..4690799 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -4,7 +4,9 @@ LABEL MAINTAINER="heckyel@hyperbola.info" ARG pkgname=tmate ARG pkgver=2.4.0 -RUN pacman -Syu --noconfirm && \ +RUN mv -T /etc/pacman.d/mirrorlist.pacnew /etc/pacman.d/mirrorlist || true && \ +sed -i 's|root:x:0:0:root:/root:/bin/sh|root:x:0:0:root:/root:/bin/bash|g' /etc/passwd && \ +pacman -Syu --noconfirm && \ pacman -S --noconfirm \ procps-ng \ net-tools \ |