]> git.ozlabs.org Git - petitboot/blob - docker/Dockerfile.builder.amd64
docker: Add build container files
[petitboot] / docker / Dockerfile.builder.amd64
1 # Image for compiling petitboot.
2
3 FROM ubuntu:17.10
4
5 ENV LANG C.UTF-8
6 ENV LC_ALL C.UTF-8
7
8 RUN apt-get update && apt-get install -y \
9         apt-utils \
10         autoconf \
11         autopoint \
12         bison \
13         flex \
14         gettext \
15         gcc \
16         git \
17         libtool \
18         libuv-dev \
19         libdevmapper-dev \
20         libncurses-dev \
21         pkg-config \
22         && rm -rf /var/lib/apt/lists/*
23
24 CMD /bin/bash