]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - tools/docker/Dockerfile
Unpack intel microcode before initramfs images are being built
[people/pmueller/ipfire-2.x.git] / tools / docker / Dockerfile
index 02ec146c85c3fbc62c5ace106e257ec7f9ef521c..6fcd5cbee6b7180c6eac52e73329877aad764d40 100644 (file)
@@ -2,7 +2,7 @@
 FROM debian:stable
 
 # Install all updates
-RUN apt-get update && apt-get dist-upgrade
+RUN apt-get update && apt-get dist-upgrade -y
 
 # Install all packages needed for the build
 RUN apt-get install -y \
@@ -13,7 +13,8 @@ RUN apt-get install -y \
        flex \
        gawk \
        git \
-       libz-dev
+       libz-dev \
+       wget
 
 # Enable colors in git
 RUN git config --global color.ui auto