Ensure we always build in a clean environment

This commit is contained in:
Thomas Orozco 2015-02-28 19:05:25 -05:00
parent 04119b2869
commit 0b3e77da75
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ FROM ubuntu
RUN apt-get update && apt-get install --no-install-recommends -y build-essential gdb && rm -rf /var/lib/apt/lists/*
ADD . /tini
RUN cd /tini && make
RUN cd /tini && make clean && make
ENTRYPOINT ["/tini/tini"]