2020-04-02 00:12:08 +02:00
|
|
|
FROM ortools/make:fedora_swig AS env
|
|
|
|
|
RUN dnf -y update \
|
|
|
|
|
&& dnf -y install \
|
|
|
|
|
python3 python3-devel python3-pip python3-six python3-wheel \
|
|
|
|
|
&& dnf clean all
|
|
|
|
|
|
|
|
|
|
FROM env AS devel
|
2020-04-13 17:48:44 +02:00
|
|
|
WORKDIR /home/project
|
2020-04-02 00:12:08 +02:00
|
|
|
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
|