LoginSignup
0
0

More than 1 year has passed since last update.

Dockerfileのベースイメージにcentos8を使ってハマった点

Last updated at Posted at 2023-06-23

概要

今回は、docker imageを作成していてつまづいたところを共有します。
とてもしょーもない理由でした。

事象

  • dockerfileで'dnf -y update'で以下のエラーが発生

コード

FROM centos:8

WORKDIR /wordpress

RUN dnf clean all
RUN dnf -y update

エラー内容

#0 0.892 Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist

appstreamへ接続できないっていわれますね。

原因

centos8がサポート終了してappstreamが閉鎖されたってだけ

対処

almalinuxに変更

めでたしめでたし。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0