Files
skaware/Dockerfile
T
John Regan eb48e95b94 A whole mess of changes (see detail lines)
* Add other s6 packages
  * s6-linux-utils
  * s6-dns
  * s6-networking
* Split compiled .tar.gz files into separate packages
  * ${package}-bin for runtime items
  * ${package}-dev for buildtime items
* Add build-wrapper
  * Wraps build-latest to output to a log file
* Download+compile linux-headers
  * Based off of Alpine's APKBUILD for linux-headers
  * Needed for s6-linux-utils
2015-03-01 13:09:39 -06:00

24 lines
499 B
Docker

FROM ubuntu:14.04
MAINTAINER Gorka Lerchundi Osa <glertxundi@gmail.com>
ENV LC_ALL C
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install git curl build-essential
RUN mkdir -p /build && \
mkdir -p /dist
COPY rootfs /
RUN chmod +x /build-latest \
/build-latest-git \
/install-latest \
/install-latest-git
VOLUME /dist
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
CMD ["/build-wrapper"]