From eb55c305bcb50f4a8db004a6277eee913edc91ca Mon Sep 17 00:00:00 2001 From: Yuki Koya Date: Sat, 17 Sep 2022 19:31:28 +0900 Subject: [PATCH] Update package database on Docker The package database included in the docker image is out of date. This causes a 404 error when retrieving packages. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9237fd25..2deb6d59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=amd64 manjarolinux/base AS build -RUN pacman -S --noconfirm \ +RUN pacman -Sy --noconfirm \ cmake \ arm-none-eabi-gcc \ arm-none-eabi-newlib \