We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9eeda commit ec14f8bCopy full SHA for ec14f8b
container/Containerfile
@@ -26,6 +26,8 @@ COPY install-compilers.sh .
26
RUN chmod +x install-compilers.sh ; ./install-compilers.sh
27
COPY install-extra.sh .
28
RUN chmod +x install-extra.sh ; ./install-extra.sh
29
+COPY install-buildroot.sh .
30
+RUN chmod +x install-buildroot.sh ; ./install-buildroot.sh
31
32
RUN mkdir -p /usr/local/bin
33
WORKDIR /usr/local/bin
container/install-buildroot.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+# for: build-doc-*
3
+
4
+set -e
5
6
+# Install packages required by Buildroot
7
+zypper install -y --no-recommends \
8
+ gcc gcc-c++ make wget rsync cpio bc unzip file \
9
+ git python3 tar xz gzip patch which
0 commit comments