Skip to content

Commit a17eaac

Browse files
authored
Possible speedups (#15)
* Update to Fedora 41 with dnf5 This should be faster, see https://fedoraproject.org/wiki/Changes/ReplaceDnfWithDnf5 > Significantly faster for many user cases > Optimization of download metadata Fedora 41 is currently still in beta, but if this causes trouble, we can always revert. Related to #8 * Disable extra repository with a multimedia codec The repository is enabled by default but we don't need it. By explicitly disabling it, we prevent unnecessary metadata fetch. Related to #8
1 parent 7a68613 commit a17eaac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

devcontainer/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/fedora:40
1+
FROM docker.io/library/fedora:41
22

33
ENV CC=clang
44

@@ -9,8 +9,8 @@ ENV WASMTIME_HOME=/opt/wasmtime
99
ENV WASMTIME_VERSION=22.0.0
1010
ENV WASMTIME_CPU_ARCH=x86_64
1111

12-
RUN dnf -y --nodocs --setopt=install_weak_deps=False install /usr/bin/{blurb,clang,curl,git,ln,tar,xz} 'dnf-command(builddep)' && \
13-
dnf -y --nodocs --setopt=install_weak_deps=False builddep python3 && \
12+
RUN dnf -y --nodocs --setopt=install_weak_deps=False --disablerepo=fedora-cisco-openh264 install /usr/bin/{blurb,clang,curl,git,ln,tar,xz} 'dnf5-command(builddep)' && \
13+
dnf -y --nodocs --setopt=install_weak_deps=False --disablerepo=fedora-cisco-openh264 builddep python3 && \
1414
dnf -y clean all
1515

1616
RUN mkdir ${WASI_SDK_PATH} && \

0 commit comments

Comments
 (0)