Browse Source

Always refresh pacman package lists to avoid 404 errors.

arch-based-toolchain
Christoph Scholtes 3 months ago
parent
commit
01a64fbbb7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Dockerfile

+ 1
- 1
Dockerfile View File

@@ -9,7 +9,7 @@ RUN useradd --create-home --uid 1000 --gid 1000 --shell /bin/bash build

# Install make to run make
ENV DEBIAN_FRONTEND=noninteractive
RUN pacman -Suy --noconfirm && pacman -S make --noconfirm
RUN pacman -Suyy --noconfirm && pacman -S make --noconfirm

# Create toolchain directory
USER build


Loading…
Cancel
Save