* Add documentation * Add docker layer diagram * Add Docker/Makefile ci * Add gh workflow * gh workflow disable fail-fast
17 lines
237 B
Docker
17 lines
237 B
Docker
FROM ortools/make:opensuse_base AS env
|
|
RUN make -version
|
|
|
|
FROM env AS devel
|
|
WORKDIR /home/lib
|
|
COPY . .
|
|
|
|
FROM devel AS build
|
|
RUN make third_party
|
|
RUN make cc
|
|
|
|
FROM build AS test
|
|
RUN make test_cc
|
|
|
|
FROM build AS package
|
|
RUN make package_cc
|