-
Notifications
You must be signed in to change notification settings - Fork 28
Docker2 #121
base: master
Are you sure you want to change the base?
Conversation
| * CMAKE_BUILD_TYPE=Release | ||
| * DO_PROFILING=False | ||
| * DISABLE_OPENMP=True | ||
| * BUILD_JAVA=False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why disable OpenMP and Java?
| @@ -0,0 +1,99 @@ | |||
| #! /bin/bash | |||
| # The MIT License (MIT) | |||
| # Copyright (c) 2017 Intel Corporation | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2016-2017
|
|
||
| FROM centos:7 | ||
|
|
||
| LABEL vendor="Intel Inc." name="GenomicsDB Builder" version="1.0" description="Build GenomicsDB" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intel Corporation
|
|
||
| # make protobuf | ||
| build_proto_buf() { | ||
| echo "+++ Building protobuf at ${PROTOBUF_LIBRARY}..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the message is wrong. you're not building protobuf under $BUILD_ROOT/protobuf_build, you're building it under /output
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you did not use PROTOBUF_LIBRARY actually in the cmake
| @@ -1,5 +1,5 @@ | |||
| # The MIT License (MIT) | |||
| # Copyright (c) 2016-2017 Intel Corporation | |||
| # Copyright (c) 2017 Intel Corporation | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2016-2017
docker source code for building genomicsDB executables.