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

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

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