We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0948be commit d140fbbCopy full SHA for d140fbb
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM debian
2
+
3
+RUN apt-get update && apt-get install -y \
4
+ qemu-user-static \
5
+ debootstrap \
6
+ binfmt-support \
7
+ git \
8
+ sudo \
9
+ python3 \
10
+ python3-requests \
11
+ parted \
12
+ dpkg
13
14
+WORKDIR /build
builddocker.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+docker build -t bpi-router-images .
+rm -rf *.gz debian_*
+docker run --rm --privileged -v $(pwd):/build bpi-router-images ./buildimg.sh $1 $2 $3
0 commit comments