Newer
Older
Dockerfiles / Dockerfile.build.macosx
@John Ryland John Ryland on 9 Nov 2019 251 bytes dep on clang
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y make git python3

# Install Linting Tools
RUN apt-get install -y clang clang-tidy clang-format

# Install Build Tools
ADD osxcross.tar.bz2 ./

# Add to PATH
ENV PATH="/osxcross/bin:${PATH}"