Merge pull request #1 from zellski/FreakTheMighty-feature/docker
The Dockerfile can tell Conan exactly what its system is.
This commit is contained in:
commit
0987bb56ac
|
@ -21,8 +21,8 @@ RUN curl -L https://www.autodesk.com/content/dam/autodesk/www/adn/fbx/20192/fbx2
|
||||||
rm -rf /fbxsdktemp
|
rm -rf /fbxsdktemp
|
||||||
|
|
||||||
# Build and install
|
# Build and install
|
||||||
RUN conan install . -i build -s build_type=Release -e FBXSDK_SDKS=/fbx2gltf/sdk && \
|
RUN conan install . -i docker-build -s build_type=Release -s compiler=gcc -s compiler.version=5 -s compiler.libcxx=libstdc++11 && \
|
||||||
conan build -bf build . && \
|
conan build -bf docker-build . && \
|
||||||
cp build/FBX2glTF /usr/bin && \
|
cp docker-build/FBX2glTF /usr/bin && \
|
||||||
cd / && \
|
cd / && \
|
||||||
rm -rf /fbx2gltf
|
rm -rf /fbx2gltf /root/.conan
|
||||||
|
|
Loading…
Reference in New Issue