fix: remove unnecessary etc reference from containerfile

This commit is contained in:
lili 2023-06-29 18:42:18 -03:00
parent 7b5cc9f63f
commit bbb854c74e
No known key found for this signature in database

View file

@ -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