mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 13:02:58 +02:00
By running "./make.sh docker" the current build environment will be mounted into a Debian-based docker container. This clean build environment can be used to compile the toolchain or something... Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
22 lines
374 B
Docker
22 lines
374 B
Docker
# This image is based on the latest stable version of Debian
|
|
FROM debian:stable
|
|
|
|
# Install all updates
|
|
RUN apt-get update && apt-get dist-upgrade
|
|
|
|
# Install all packages needed for the build
|
|
RUN apt-get install -y \
|
|
build-essential \
|
|
autoconf \
|
|
automake \
|
|
bison \
|
|
flex \
|
|
gawk \
|
|
git \
|
|
libz-dev
|
|
|
|
# Enable colors in git
|
|
RUN git config --global color.ui auto
|
|
|
|
WORKDIR ~
|