forked from unity-sds/sounder-sips-application
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile.common
More file actions
21 lines (15 loc) · 746 Bytes
/
Dockerfile.common
File metadata and controls
21 lines (15 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM unity-sds/sounder_sips_base:r0.1.0
ENV BUILD_PATH /build
# Parallel build can cause the build to failr
ENV NUM_COMPILE_JOBS=1
WORKDIR $BUILD_PATH
COPY src $BUILD_PATH/spss
# PGE common directories
RUN cd $BUILD_PATH/spss/src/common/make && make -j $NUM_COMPILE_JOBS
RUN cd $BUILD_PATH/spss/src/shared_io/make && make -j $NUM_COMPILE_JOBS
RUN cd $BUILD_PATH/spss/src/shared_alg/make && make -j $NUM_COMPILE_JOBS
RUN cd $BUILD_PATH/spss/src/pge_wrapper/make && make -j $NUM_COMPILE_JOBS
# MetExtractor compilation
RUN cd $BUILD_PATH/spss/src/scf_shared/make && make -j $NUM_COMPILE_JOBS
RUN cd $BUILD_PATH/spss/src/scf_pge/make && make -j $NUM_COMPILE_JOBS
RUN cd $BUILD_PATH/spss/src/scf_metextractors/make && make -j $NUM_COMPILE_JOBS