We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3065f1d + 30f51a8 commit 8281e00Copy full SHA for 8281e00
2 files changed
.github/workflows/docker-publish.yml
@@ -11,7 +11,7 @@ on:
11
jobs:
12
publish:
13
14
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
15
16
steps:
17
- uses: actions/checkout@master
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ubuntu:22.04
+FROM ubuntu:24.04
2
3
LABEL Maintainer="James Hiebert <hiebert@uvic.ca>"
4
@@ -18,8 +18,6 @@ RUN apt-get update && apt-get install -yq \
18
ENV CPLUS_INCLUDE_PATH=/usr/include/gdal
19
ENV C_INCLUDE_PATH=/usr/include/gdal
20
21
-RUN python3 -m pip install -U pip
+RUN pip install numpy --break-system-packages
22
23
-RUN pip3 install numpy
24
-
25
-RUN pip3 install gdal==3.4.1 h5py netCDF4 psycopg2 PyYAML pillow
+RUN pip install gdal==3.8.4 h5py netCDF4 psycopg2 PyYAML pillow --break-system-packages
0 commit comments