diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2021-09-16 17:33:38 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2021-09-25 14:15:22 +0200 |
commit | 6ebfbbb4f11c032f0c3fee3aab9cfb30ce717ea6 (patch) | |
tree | 0457dbf0eaf4aeeaa1b55437cd7778ce50ce781e /Containerfile | |
parent | 7835d1f007353883f5e4b7d75eaa6083dd5f1bc2 (diff) | |
download | bootstrap-6ebfbbb4f11c032f0c3fee3aab9cfb30ce717ea6.tar bootstrap-6ebfbbb4f11c032f0c3fee3aab9cfb30ce717ea6.zip |
Add build helpers
Diffstat (limited to 'Containerfile')
-rw-r--r-- | Containerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..194d727 --- /dev/null +++ b/Containerfile @@ -0,0 +1,19 @@ +FROM debian:11.0 + +RUN \ + apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get -y install \ + make gcc g++ xz-utils \ + libmpc-dev libmpfr-dev libgmp-dev zlib1g-dev \ + python3-minimal gawk bison rsync \ + && \ + apt-get clean + +RUN mkdir /opt/sysroot + +RUN mkdir /build +RUN useradd -U -u 1000 -d /build -M build +RUN chown build:build /build + +USER build +WORKDIR /build |