Add standard stage runner to base image
This commit is contained in:
parent
2ad427f535
commit
449983152b
2 changed files with 7 additions and 0 deletions
|
@ -7,3 +7,5 @@ RUN \
|
||||||
apt-get -y dist-upgrade && \
|
apt-get -y dist-upgrade && \
|
||||||
apt-get -y install build-essential yasm nasm pkg-config git curl wget cmake unzip subversion autoconf automake libtool cmake clang texinfo texi2html gperf ragel libc6-dev && \
|
apt-get -y install build-essential yasm nasm pkg-config git curl wget cmake unzip subversion autoconf automake libtool cmake clang texinfo texi2html gperf ragel libc6-dev && \
|
||||||
apt-get -y clean
|
apt-get -y clean
|
||||||
|
|
||||||
|
ADD run_stage.sh /usr/bin/run_stage
|
||||||
|
|
5
images/base/run_stage.sh
Executable file
5
images/base/run_stage.sh
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -xe
|
||||||
|
source /stage.sh
|
||||||
|
ffbuild_dockerbuild
|
||||||
|
rm /stage.sh
|
Loading…
Reference in a new issue