* Update CMake doc
* Update Docker diagram
* Refactor CI Makefile
* Refactor and Fix <lang>.Dockerfile
* Refactor gh Docker CMake workflow
* gh CMake workflow disable fail-fast
* Remove manylinux
* Add Java samplei, generated using:
$ mvn archetype:generate -DarchetypeArtifactId=maven-archetype-quickstart
-> com.google.ortools
-> sample
note: sample still not use ortools package yet
17 lines
466 B
Docker
17 lines
466 B
Docker
# Create a virtual environment with all tools installed
|
|
# ref: https://hub.docker.com/r/opensuse/tumbleweed
|
|
FROM opensuse/tumbleweed AS base
|
|
LABEL maintainer="corentinl@google.com"
|
|
# Install system build dependencies
|
|
ENV PATH=/usr/local/bin:$PATH
|
|
RUN zypper update -y \
|
|
&& zypper install -y git gcc gcc-c++ cmake \
|
|
&& zypper clean -a
|
|
ENV CC=gcc CXX=g++
|
|
CMD [ "/usr/bin/bash" ]
|
|
|
|
FROM base AS swig
|
|
RUN zypper update -y \
|
|
&& zypper install -y swig \
|
|
&& zypper clean -a
|