Skip to content

Instantly share code, notes, and snippets.

@Thrilleratplay
Created May 28, 2018 02:05
Show Gist options
  • Save Thrilleratplay/c3073de6d9987b90e113c2cc14480080 to your computer and use it in GitHub Desktop.
Save Thrilleratplay/c3073de6d9987b90e113c2cc14480080 to your computer and use it in GitHub Desktop.
Coreboot builder dockerfiler (WIP)
FROM bitnami/minideb:stretch
# ccache specifics
ENV CCACHE_SIZE=100M \
CCACHE_DIR=/build/ccache \
USE_CCACHE=1 \
CCACHE_COMPRESS=1
RUN apt-get -qq -y update && \
apt-get install -y --no-install-recommends git \
flex \
bison \
build-essential \
ccache \
ca-certificates \
libncurses5-dev \
curl \
wget \
zlib1g-dev \
python \
texinfo \
gnat-6 \
libgmp10 \
libmpfr4 \
libmpc3 \
libmpc-dev \
libgmpada4 \
&& \
rm -rf /var/lib/apt/lists/*
# Volume location
VOLUME /build
WORKDIR /build
CMD ["/build/compile-coreboot.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment