72b2007bc4
- Build, upload solver docker image. - Remove deployment job: the solver is not deployed on the Nebulous cluster, but is deployed by SAL on each app cluster. - Adapt helm chart; SAL might use it to deploy the solver. - Add AMPL license file contents to nebulous secrets store, pass it in via helm charts. Note that it's ok to run without a license file. - For testing purposes, add a docker-compose.yaml file - Pacify hadolint: when installing packages in Dockerfile, specify package versions. - Pacify shellcheck: fix warnings in start-solver.sh - Pacify podman: do not use heredocs for RUN. - Remove Spring Boot demo application. Change-Id: I757a440d09082b5824f36a81cb82d6e5c169a699
63 lines
2.5 KiB
Docker
63 lines
2.5 KiB
Docker
FROM fedora:39 AS builder
|
|
|
|
# To build:
|
|
# docker build -t nebulous/solver .
|
|
|
|
#
|
|
# For a shell, to diagnose problems etc.:
|
|
# docker run --rm -it --entrypoint /bin/bash nebulous/solver
|
|
|
|
RUN mkdir -p /solver
|
|
WORKDIR /solver
|
|
|
|
# Development framework, dependencies
|
|
RUN dnf --assumeyes install gcc-c++-13.2.1-6.fc39 make-1:4.4.1-2.fc39 git-core-2.44.0-1.fc39 boost-devel-1.81.0-8.fc39 ccache-4.8.2-2.fc39 qpid-proton-cpp-devel-0.38.0-4.fc39 json-c-0.17-1.fc39 json-devel-3.11.2-3.fc39 json-glib-1.8.0-1.fc39 jsoncpp-1.9.5-5.fc39 jsoncpp-devel-1.9.5-5.fc39 coin-or-Couenne-0.5.8-12.fc39 wget-1.21.3-7.fc39 && \
|
|
dnf clean all && \
|
|
git clone https://github.com/jarro2783/cxxopts.git CxxOpts && \
|
|
git clone https://github.com/GeirHo/TheronPlusPlus.git Theron++ && \
|
|
mkdir Theron++/Bin
|
|
|
|
# Install AMPL library
|
|
RUN wget --progress=dot:giga https://portal.ampl.com/external/?url=https://portal.ampl.com/dl/amplce/ampl.linux64.tgz -O ampl.linux64.tgz && \
|
|
tar --file=ampl.linux64.tgz --extract && \
|
|
mv ampl.linux-intel64 AMPL && \
|
|
rm ampl.linux64.tgz
|
|
|
|
# Make AMPL shared libraries findable
|
|
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/solver/AMPL:/solver/AMPL/amplapi/lib"
|
|
|
|
COPY . /solver
|
|
|
|
# Build solver
|
|
RUN make SolverComponent -e THERON=./Theron++ AMPL_INCLUDE=./AMPL/amplapi/include AMPL_LIB=./AMPL/amplapi/lib CxxOpts_DIR=./CxxOpts/include && \
|
|
make clean
|
|
|
|
# ============================================================
|
|
|
|
FROM fedora:39
|
|
WORKDIR /solver
|
|
RUN dnf --assumeyes install boost-1.81.0-8.fc39 qpid-proton-cpp-0.38.0-4.fc39 json-c-0.17-1.fc39 json-glib-1.8.0-1.fc39 jsoncpp-1.9.5-5.fc39 coin-or-Couenne-0.5.8-12.fc39 && \
|
|
dnf clean all
|
|
|
|
COPY --from=builder /solver /solver
|
|
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/solver/AMPL:/solver/AMPL/amplapi/lib"
|
|
|
|
# The `SolverComponent` arguments `--ModelDir` and `--AMPLDir` are
|
|
# constant, the other arguments can be given on the command line or
|
|
# via environment variables:
|
|
#
|
|
# -b amqbroker (variable ACTIVEMQ_HOST, default localhost)
|
|
# -P amqpport (variable ACTIVEMQ_PORT, default 5672)
|
|
# -u user (variable ACTIVEMQ_USER, default admin)
|
|
# -p amqppassword (variable ACTIVEMQ_PASSWORD)
|
|
# -e appid (variable APPLICATION_ID)
|
|
# -l license (variable AMPL_LICENSE)
|
|
#
|
|
# The docker can be started with explicit parameters, environment
|
|
# variables or a mix of both. Parameters override variables.
|
|
#
|
|
# docker run -e APPLICATION_ID="my_app_id" nebulous/solver -b="https://amqp.example.com/" -p=s3kr1t
|
|
#
|
|
|
|
ENTRYPOINT ["/solver/start-solver.sh"]
|