Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame^] | 1 | FROM debian:10.1-slim as base |
2 | RUN apt -qq update >/dev/null | ||||
3 | RUN apt -qq install -y cmake make build-essential >/dev/null | ||||
4 | RUN apt -qq install -y autoconf git libtool >/dev/null | ||||
5 | RUN apt -qq install -y clang >/dev/null | ||||
6 | FROM base | ||||
7 | # Travis machines have 2 cores. Can be redefined with 'run --env PAR_JOBS=N'. | ||||
8 | ENV JOBS=2 | ||||
9 | WORKDIR /flatbuffers | ||||
10 | ADD . . |