mirror of
https://github.com/wahyd4/skaware.git
synced 2026-08-09 04:35:57 +10:00
21 lines
424 B
Docker
21 lines
424 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
|
|
|
|
VOLUME "/dist"
|
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
CMD ["/build-latest"] |