Files
ortools-clone/bazel/docker/opensuse/Dockerfile
Corentin Le Molgat 41a331a3ef bazel: Fix ci
2024-11-13 17:16:42 +01:00

45 lines
1.0 KiB
Docker

# Create a virtual environment with all tools installed
# ref: https://hub.docker.com/r/opensuse/tumbleweed
FROM opensuse/tumbleweed AS env
# Install system build dependencies
ENV PATH=/usr/local/bin:$PATH
RUN zypper update -y \
&& zypper install -y git wget gcc gcc-c++ zlib-devel \
&& zypper clean -a
ENV CC=gcc CXX=g++
# Install Bazelisk
RUN wget \
https://github.com/bazelbuild/bazelisk/releases/download/v1.23.0/bazelisk-linux-amd64 \
&& chmod +x bazelisk-linux-amd64 \
&& mv bazelisk-linux-amd64 /usr/local/bin/bazel
# Install Java JDK and Maven
RUN zypper refresh \
&& zypper install -y java-17-openjdk-devel maven \
&& zypper clean -a
ENV PATH=/usr/share/maven/bin:$PATH
# Install Python
RUN zypper update -y \
&& zypper install -y python3 python3-pip python3-devel \
&& zypper clean -a
FROM env AS devel
WORKDIR /home/project
COPY . .
FROM devel AS build
RUN bazel version
RUN bazel build \
-c opt \
--subcommands=true \
//ortools/... //examples/...
FROM build AS test
RUN bazel test \
-c opt \
--test_output=errors \
//ortools/... //examples/...