forked from msvsphere/leapp-repository
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
271 B
19 lines
271 B
9 months ago
|
FROM fedora:34
|
||
|
|
||
|
VOLUME /repo
|
||
|
|
||
|
RUN dnf update -y && \
|
||
|
dnf install -y findutils make rsync python3-gobject-base NetworkManager-libnm
|
||
|
|
||
|
ENV PYTHON_VENV python3.9
|
||
|
|
||
|
COPY . /repocopy
|
||
|
|
||
|
WORKDIR /repocopy
|
||
|
|
||
|
RUN rm -rf tut*
|
||
|
|
||
|
RUN make clean && make install-deps-fedora
|
||
|
|
||
|
WORKDIR /
|