- This makefile orchestrate the use of cmake/docker to test cmake - add cache/ to .gitignore
6 lines
156 B
Docker
6 lines
156 B
Docker
FROM ubuntu:latest
|
|
LABEL maintainer="corentinl@google.com"
|
|
|
|
ADD setup.sh .
|
|
RUN ./setup.sh && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|