We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54c9b9 commit cb6f53cCopy full SHA for cb6f53c
2 files changed
Dockerfile
@@ -32,6 +32,14 @@ RUN jlink \
32
FROM debian:bookworm-slim AS runner
33
WORKDIR /app
34
35
+# Install system build tools, needed to build solver dependencies
36
+RUN apt-get update && apt-get install -y \
37
+ build-essential \
38
+ gcc \
39
+ g++ \
40
+ python3-dev \
41
+ && rm -rf /var/lib/apt/lists/*
42
+
43
COPY scripts scripts
44
45
# Install GAMS with conda python environment
scripts/ci-setup-solvers.sh
@@ -7,13 +7,6 @@ set -e
7
# get base directory of the repository
8
REPO_DIR=$(dirname "$(dirname "$(readlink -f "$0")")")
9
10
-RUN apt-get update && apt-get install -y \
11
- build-essential \
12
- gcc \
13
- g++ \
14
- python3-dev \
15
- && rm -rf /var/lib/apt/lists/*
16
-
17
# make sure to install to the gams conda env
18
source /opt/conda/bin/activate gams
19
0 commit comments