This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile to allow Java programs using OR-Tools to be containerised - using google-jib - along with a third-party | |
# solver (CPLEX in this case) | |
# ref: https://hub.docker.com/_/debian | |
FROM debian:11 AS env | |
############# | |
## SETUP ## | |
############# | |
RUN apt-get update -qq \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ref: https://hub.docker.com/_/debian | |
FROM debian:11 AS env | |
############# | |
## SETUP ## | |
############# | |
RUN apt-get update -qq \ | |
&& apt-get install -qq \ | |
git pkg-config wget make autoconf libtool zlib1g-dev gawk g++ curl subversion \ | |
swig lsb-release \ |