-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
93 lines (68 loc) · 2.75 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
ARG BASE=cginternals/rendering-base:latest
ARG BASE_DEV=cginternals/rendering-base:dev
ARG CPPLOCATE_DEPENDENCY=cginternals/cpplocate:latest
ARG CPPFS_DEPENDENCY=cginternals/cppfs:latest
ARG CPPASSIST_DEPENDENCY=cginternals/cppassist:latest
ARG GLBINDING_DEPENDENCY=cginternals/glbinding:latest
ARG GLOBJECTS_DEPENDENCY=cginternals/globjects:latest
ARG PROJECT_NAME=openll
# DEPENDENCIES
FROM $CPPLOCATE_DEPENDENCY AS cpplocate
FROM $CPPFS_DEPENDENCY AS cppfs
FROM $CPPASSIST_DEPENDENCY AS cppassist
FROM $GLBINDING_DEPENDENCY AS glbinding
FROM $GLOBJECTS_DEPENDENCY AS globjects
# BUILD
FROM $BASE_DEV AS build
ARG PROJECT_NAME
ARG COMPILER_FLAGS="-j 4"
COPY --from=cpplocate $WORKSPACE/cpplocate $WORKSPACE/cpplocate
COPY --from=cppfs $WORKSPACE/cppfs $WORKSPACE/cppfs
COPY --from=cppassist $WORKSPACE/cppassist $WORKSPACE/cppassist
COPY --from=glbinding $WORKSPACE/glbinding $WORKSPACE/glbinding
COPY --from=globjects $WORKSPACE/globjects $WORKSPACE/globjects
ENV cpplocate_DIR="$WORKSPACE/cpplocate"
ENV cppfs_DIR="$WORKSPACE/cppfs"
ENV cppassist_DIR="$WORKSPACE/cppassist"
ENV glbinding_DIR="$WORKSPACE/glbinding"
ENV globjects_DIR="$WORKSPACE/globjects"
ENV openll_DIR="$WORKSPACE/$PROJECT_NAME"
WORKDIR $WORKSPACE/$PROJECT_NAME
ADD cmake cmake
ADD docs docs
ADD deploy deploy
ADD source source
ADD data data
ADD CMakeLists.txt CMakeLists.txt
ADD configure configure
ADD $PROJECT_NAME-config.cmake $PROJECT_NAME-config.cmake
ADD LICENSE LICENSE
ADD README.md README.md
ADD AUTHORS AUTHORS
RUN ./configure
RUN CMAKE_OPTIONS="-DOPTION_BUILD_TESTS=Off -DOPTION_BUILD_EXAMPLES=On" ./configure
RUN cmake --build build -- $COMPILER_FLAGS
# INSTALL
FROM build as install
ARG PROJECT_NAME
WORKDIR $WORKSPACE/$PROJECT_NAME
RUN CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=$WORKSPACE/$PROJECT_NAME-install" ./configure
RUN cmake --build build --target install
# DEPLOY
FROM $BASE AS deploy
ARG PROJECT_NAME
COPY --from=build $WORKSPACE/glm $WORKSPACE/glm
COPY --from=build $WORKSPACE/glfw $WORKSPACE/glfw
COPY --from=build $WORKSPACE/cpplocate $WORKSPACE/cpplocate
COPY --from=build $WORKSPACE/cppfs $WORKSPACE/cppfs
COPY --from=build $WORKSPACE/cppassist $WORKSPACE/cppassist
COPY --from=build $WORKSPACE/glbinding $WORKSPACE/glbinding
COPY --from=build $WORKSPACE/globjects $WORKSPACE/globjects
COPY --from=install $WORKSPACE/$PROJECT_NAME-install $WORKSPACE/$PROJECT_NAME
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/glfw/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/cpplocate/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/cppfs/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/cppassist/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/glbinding/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/globjects/lib
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WORKSPACE/$PROJECT_NAME/lib