Newer
Older
Dockerfiles / Dockerfile.build.macosx
@John Ryland John Ryland on 9 Nov 2019 394 bytes fix deps
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 ./

# Install Build Tool Dependancy
RUN apt-get install -y libxml2-dev

# Configure Environment Variables
ENV LD_LIBRARY_PATH="/osxcross/lib:${LD_LIBRARY_PATH}"
ENV PATH="/osxcross/bin:${PATH}"