Skip to content

Commit 8281e00

Browse files
authored
Merge pull request #15 from pacificclimate/py-sprint-25q1
upgrade to Ubuntu 24.04, GDAL 3.8, and Python 3.12
2 parents 3065f1d + 30f51a8 commit 8281e00

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
publish:
1313

14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@master

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
LABEL Maintainer="James Hiebert <hiebert@uvic.ca>"
44

@@ -18,8 +18,6 @@ RUN apt-get update && apt-get install -yq \
1818
ENV CPLUS_INCLUDE_PATH=/usr/include/gdal
1919
ENV C_INCLUDE_PATH=/usr/include/gdal
2020

21-
RUN python3 -m pip install -U pip
21+
RUN pip install numpy --break-system-packages
2222

23-
RUN pip3 install numpy
24-
25-
RUN pip3 install gdal==3.4.1 h5py netCDF4 psycopg2 PyYAML pillow
23+
RUN pip install gdal==3.8.4 h5py netCDF4 psycopg2 PyYAML pillow --break-system-packages

0 commit comments

Comments
 (0)