Newer
Older
Dockerfiles / Dockerfile.build.macosx
@John Ryland John Ryland on 21 Jun 2021 457 bytes update to newer ubuntu version
FROM ubuntu:20.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}"

# Install Tools
RUN apt-get install -y cmake doxygen graphviz