File tree Expand file tree Collapse file tree 7 files changed +12
-24
lines changed Expand file tree Collapse file tree 7 files changed +12
-24
lines changed Original file line number Diff line number Diff line change 1
- FROM ghcr.io/ansys/mapdl:v24.1 -ubuntu-student
1
+ FROM ghcr.io/ansys/mapdl:v25.2 -ubuntu-cicd
2
2
3
3
ENV USERNAME=mapdl
4
4
USER root
@@ -7,6 +7,9 @@ USER root
7
7
ENV DEBIAN_FRONTEND=noninteractive
8
8
ENV ON_CODESPACES=true
9
9
ENV CODESPACES_MODE=dev
10
+ ENV ON_LOCAL=true
11
+ ENV ON_UBUNTU=true
12
+ ENV ON_CI=true
10
13
11
14
# Installing libs for testing and docs
12
15
RUN apt-get -qq update && apt install -qq -y
Original file line number Diff line number Diff line change @@ -7,16 +7,9 @@ services:
7
7
# to avoid running issues. By Default this is very small (64MB)
8
8
container_name : PyMAPDL-Development
9
9
mem_reservation : 8g
10
- image : ' ghcr.io/ansys/mapdl:v24.1-ubuntu-student'
11
10
build :
12
11
dockerfile : Dockerfile
13
12
context : .
14
- environment :
15
- # Env vars for testing
16
- - ON_CI=true
17
- - ON_LOCAL=true
18
- - ON_STUDENT=true
19
- - ON_UBUNTU=true
20
13
volumes :
21
14
# Update this to wherever you want VS Code to mount the folder of your project inside the container.
22
15
- ../:/home/mapdl/pymapdl:cached
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/ansys/mapdl:v24.1 -ubuntu-student
1
+ FROM ghcr.io/ansys/mapdl:v25.2 -ubuntu-cicd
2
2
3
3
ENV USERNAME=mapdl
4
4
USER root
@@ -7,6 +7,9 @@ USER root
7
7
ENV DEBIAN_FRONTEND=noninteractive
8
8
ENV ON_CODESPACES=true
9
9
ENV CODESPACES_MODE=docs
10
+ ENV ON_LOCAL=true
11
+ ENV ON_UBUNTU=true
12
+ ENV ON_CI=true
10
13
11
14
# Installing libs for testing and docs
12
15
RUN apt-get -qq update && apt install -qq -y \
Original file line number Diff line number Diff line change @@ -7,16 +7,9 @@ services:
7
7
# to avoid running issues. By Default this is very small (64MB)
8
8
container_name : PyMAPDL-Development
9
9
mem_reservation : 8g
10
- image : ' ghcr.io/ansys/mapdl:v24.1-ubuntu-student'
11
10
build :
12
11
dockerfile : Dockerfile
13
12
context : .
14
- environment :
15
- # Env vars for testing
16
- - ON_CI=true
17
- - ON_LOCAL=true
18
- - ON_STUDENT=true
19
- - ON_UBUNTU=true
20
13
volumes :
21
14
# Update this to wherever you want VS Code to mount the folder of your project inside the container.
22
15
- ../../:/home/mapdl/pymapdl:cached
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ USER root
6
6
# General libraries
7
7
ENV DEBIAN_FRONTEND=noninteractive
8
8
ENV ON_CODESPACES=false
9
+ ENV ON_LOCAL=true
10
+ ENV ON_UBUNTU=true
11
+ ENV ON_CI=true
9
12
10
13
# Installing libs for testing and docs
11
14
RUN apt-get -qq update && apt-get install -qq -y \
Original file line number Diff line number Diff line change @@ -7,20 +7,12 @@ services:
7
7
shm_size : ' 2gb' # Increase the shared memory directory to avoid running issues. By Default this is very small (64MB)
8
8
container_name : " PyMAPDL-Development" # this needs to be updated/unique if you want to have multiple containers
9
9
mem_reservation : 8g
10
- image : ' ghcr.io/ansys/mapdl:v24.1-ubuntu-student'
11
10
build :
12
11
dockerfile : Dockerfile
13
12
context : .
14
- environment :
15
- # Env vars for testing
16
- - ON_CI=true
17
- - ON_LOCAL=true
18
- - ON_STUDENT=true
19
- - ON_UBUNTU=true
20
13
volumes :
21
14
# Update this to wherever you want VS Code to mount the folder of your project inside the container.
22
15
- ../../:/home/mapdl/pymapdl:cached
23
16
24
17
# Overrides default command so things don't shut down after the process ends.
25
18
entrypoint : /bin/bash -c "while sleep 10000; do :; done"
26
-
Original file line number Diff line number Diff line change
1
+ fix: update Dockerfiles and docker-compose files to use v25.2-ubuntu-cicd and streamline environment variables
You can’t perform that action at this time.
0 commit comments