- This makefile orchestrate the use of cmake/docker to test cmake - add cache/ to .gitignore
9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
FROM ubuntu:devel
|
|
LABEL maintainer="corentinl@google.com"
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -qq build-essential cmake && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
COPY cache/ubuntu/install /
|