* Add documentation * Add docker layer diagram * Add Docker/Makefile ci * Add gh workflow * gh workflow disable fail-fast
17 lines
291 B
Docker
17 lines
291 B
Docker
FROM ortools/make:archlinux_swig AS env
|
|
RUN pacman -Syu --noconfirm python python-pip python-wheel
|
|
|
|
FROM env AS devel
|
|
WORKDIR /home/lib
|
|
COPY . .
|
|
|
|
FROM devel AS build
|
|
RUN make third_party
|
|
RUN make python
|
|
|
|
FROM build AS test
|
|
RUN make test_python
|
|
|
|
FROM build AS package
|
|
RUN make package_python
|