From bbb854c74e780d53598705b75b5fa34c39ff131c Mon Sep 17 00:00:00 2001 From: lili Date: Thu, 29 Jun 2023 18:42:18 -0300 Subject: [PATCH] fix: remove unnecessary etc reference from containerfile --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 8a4bfcd..cf460d2 100644 --- a/Containerfile +++ b/Containerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:latest AS builder RUN dnf update -y && dnf install --disablerepo='*' --enablerepo='fedora,updates' --setopt install_weak_deps=0 --nodocs --assumeyes git wget unzip && dnf clean all -RUN mkdir -p /tmp/ublue-os/files/{etc,usr} && mkdir /tmp/ublue-os/rpms +RUN mkdir -p /tmp/ublue-os/files/usr && mkdir /tmp/ublue-os/rpms COPY usr /tmp/ublue-os/files/usr ADD fetch.sh /tmp/fetch.sh