This commit is contained in:
nkahoang 2021-02-20 00:12:42 +00:00 committed by GitHub
commit d48e0b2285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -2,12 +2,11 @@ FROM ubuntu:16.04
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y software-properties-common && \ apt-get install -y software-properties-common && \
add-apt-repository ppa:jonathonf/python-3.6 && \ add-apt-repository ppa:deadsnakes/ppa && \
add-apt-repository ppa:git-core/ppa && \ add-apt-repository ppa:git-core/ppa && \
apt-get update && \ apt-get update && \
apt-get install -y python3.6 curl build-essential cmake libxml2-dev zlib1g-dev git && \ apt-get install -y python3.6 python3-pip curl build-essential cmake libxml2-dev zlib1g-dev git && \
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py && \ python3.6 -m pip install install conan && \
pip install conan && \
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
# Install FBX SDK # Install FBX SDK