Skip to content

Commit 81f0c1c

Browse files
committed
Upgrading build image from Ubuntu focal 20.04 to jammy 22.04
1 parent a4a911b commit 81f0c1c

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Based on old ubuntu to create more compatible binaries
22

3-
# To build (e.g. for ShapeWorks 6.5):
4-
# docker build --progress=plain -t akenmorris/ubuntu-build-box-focal-sw65 .
3+
# To build (e.g. for ShapeWorks 6.7):
4+
# docker build --progress=plain -t akenmorris/ubuntu-build-box-jammy-sw67 .
55
# To publish:
6-
# docker push akenmorris/ubuntu-build-box-focal-sw65
6+
# docker push akenmorris/ubuntu-build-box-jammy-sw67
77

8-
FROM ubuntu:focal-20240123 AS env
8+
FROM ubuntu:jammy-20250819 AS env
99
MAINTAINER akenmorris@gmail.com
1010

1111
# Set environment variables
@@ -36,6 +36,8 @@ RUN apt-get install rsync freeglut3-dev libgl1-mesa-dev libegl1-mesa zip libcups
3636
RUN curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/Miniconda3-latest-Linux-x86_64.sh \
3737
&& bash /tmp/Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda \
3838
&& ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh \
39+
&& /opt/conda/bin/conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main \
40+
&& /opt/conda/bin/conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r \
3941
&& conda update -n base -c defaults conda \
4042
&& conda install pip \
4143
&& echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc \

.github/workflows/build-linux-debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
build:
2525

2626
runs-on: ubuntu-latest
27-
container: akenmorris/ubuntu-build-box-focal-sw65
27+
container: akenmorris/ubuntu-build-box-jammy-sw67
2828

2929
steps:
3030

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
build:
2626

2727
runs-on: ubuntu-latest
28-
container: akenmorris/ubuntu-build-box-focal-sw65
28+
container: akenmorris/ubuntu-build-box-jammy-sw67
2929

3030
steps:
3131

0 commit comments

Comments
 (0)