File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ feat: minor changes to Linux Dockerfile
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ WORKDIR /app
8
8
9
9
# Install unzip
10
10
RUN apt-get update && \
11
- apt-get install -y --no-install-recommends unzip=6.0-26+deb11u1 && \
11
+ apt-get install -y --no-install-recommends unzip=6.* && \
12
+ apt-get install -y --no-install-recommends gcc=4:12.2.* && \
13
+ apt-get install -y --no-install-recommends mono-mcs=6.8.0.* && \
12
14
rm -rf /var/lib/apt/lists/*
13
15
14
16
# Add the binary files from the latest release
@@ -20,7 +22,7 @@ RUN unzip -qq linux-binaries.zip -d . && \
20
22
rm -rf DockerLinux
21
23
22
24
# Let the dynamic link loader where to search for shared libraries
23
- ENV LD_LIBRARY_PATH="/app"
25
+ ENV LD_LIBRARY_PATH="/app:/app/CI_Linux/bin "
24
26
25
27
# Define env variables
26
28
ENV ANS_DSCO_REMOTE_PORT=50051
@@ -29,6 +31,8 @@ ENV ANS_DSCO_REMOTE_LOGS_CONFIG="linux"
29
31
ENV LOG_LEVEL=2
30
32
ENV ENABLE_TRACE=0
31
33
ENV ANSYSLMD_LICENSE_FILE=""
34
+ ENV ANSYS_CI_INSTALL=/app/CI_Linux
35
+ ENV P_SCHEMA=/app/Schema/
32
36
33
37
# Add container labels
34
38
LABEL org.opencontainers.image.authors="ANSYS Inc."
You can’t perform that action at this time.
0 commit comments