Skip to content

Commit

Permalink
misc: Fedora l;atest Dockerfile update dnf package manager
Browse files Browse the repository at this point in the history
Replace yum to dnf package manager

Signed-off-by: Paran Lee <[email protected]>
  • Loading branch information
paranlee committed Sep 12, 2022
1 parent 988ee65 commit ef581a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion misc/docker/fedora/36/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM fedora:36
ARG test
RUN yum install -y git gcc make libasan libubsan
RUN dnf install -y git gcc make libasan libubsan
RUN mkdir -p /usr/src
RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace
RUN if [ "$test" = "yes" ] ; then \
Expand Down
2 changes: 1 addition & 1 deletion misc/docker/fedora/37/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM fedora:37
ARG test
RUN yum install -y git gcc make libasan libubsan
RUN dnf install -y git gcc make libasan libubsan
RUN mkdir -p /usr/src
RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace
RUN if [ "$test" = "yes" ] ; then \
Expand Down

0 comments on commit ef581a1

Please sign in to comment.