File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 7
7
version :
8
8
description : " Version of ArcGIS API for Python to install in the image"
9
9
type : string
10
- default : " 2.3.0 "
10
+ default : " 2.3.1 "
11
11
python_version :
12
12
description : " Python version to base image on"
13
13
type : string
@@ -28,22 +28,22 @@ jobs:
28
28
29
29
steps :
30
30
- name : Checkout code
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Set up Docker Buildx
34
34
id : buildx
35
- uses : docker/setup-buildx-action@v2
35
+ uses : docker/setup-buildx-action@v3
36
36
37
37
- name : Login to Github Packages
38
- uses : docker/login-action@v2
38
+ uses : docker/login-action@v3
39
39
with :
40
40
registry : ghcr.io
41
41
username : ${{ github.actor }}
42
42
password : ${{ secrets.GITHUB_TOKEN }}
43
43
44
44
- name : Docker meta
45
45
id : meta
46
- uses : docker/metadata-action@v4
46
+ uses : docker/metadata-action@v5
47
47
with :
48
48
images : |
49
49
ghcr.io/esri/arcgis-python-api-lambda
55
55
56
56
- id : docker_build
57
57
name : Build image and push to GitHub Container Registry
58
- uses : docker/build-push-action@v4
58
+ uses : docker/build-push-action@v6
59
59
with :
60
60
# relative path to the place where source code with Dockerfile is located
61
61
context : .
Original file line number Diff line number Diff line change 7
7
version :
8
8
description : " Version of ArcGIS API for Python to install in the image"
9
9
type : string
10
- default : " 2.2.0 "
10
+ default : " 2.3.1 "
11
11
python_version :
12
12
description : " Python version to base image on"
13
13
type : string
14
- default : " 3.9 "
14
+ default : " 3.11 "
15
15
is_latest_release :
16
16
description : " Version of ArcGIS API for Python is Latest current release"
17
17
type : boolean
@@ -32,18 +32,18 @@ jobs:
32
32
33
33
- name : Set up Docker Buildx
34
34
id : buildx
35
- uses : docker/setup-buildx-action@v2
35
+ uses : docker/setup-buildx-action@v3
36
36
37
37
- name : Login to Github Packages
38
- uses : docker/login-action@v2
38
+ uses : docker/login-action@v3
39
39
with :
40
40
registry : ghcr.io
41
41
username : ${{ github.actor }}
42
42
password : ${{ secrets.GITHUB_TOKEN }}
43
43
44
44
- name : Docker meta
45
45
id : meta
46
- uses : docker/metadata-action@v4
46
+ uses : docker/metadata-action@v5
47
47
with :
48
48
images : |
49
49
ghcr.io/esri/arcgis-python-api-notebook
55
55
56
56
- id : docker_build
57
57
name : Build image and push to GitHub Container Registry
58
- uses : docker/build-push-action@v4
58
+ uses : docker/build-push-action@v6
59
59
with :
60
60
# relative path to the place where source code with Dockerfile is located
61
61
context : ./docker
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ LABEL org.opencontainers.image.source=https://github.com/esri/arcgis-python-api
11
11
# install dependencies, then clean yum cache
12
12
RUN yum -y install gcc gcc-c++ krb5-devel krb5-server krb5-libs && yum clean all && rm -rf /var/cache/yum
13
13
# install arcgis
14
- ARG arcgis_version="2.3.0 "
14
+ ARG arcgis_version="2.3.1 "
15
15
# adding .* ensures the latest patch version is installed
16
16
RUN pip3 install "arcgis==${arcgis_version}.*" --target "${LAMBDA_TASK_ROOT}" && rm -rf /root/.cache/pip
17
17
# set entrypoint to app.py handler method
Original file line number Diff line number Diff line change 1
- ARG python_version="3.9 "
2
- FROM jupyter/base-notebook:python-${python_version}
1
+ ARG python_version="3.11 "
2
+ FROM quay.io/ jupyter/base-notebook:python-${python_version}
3
3
4
4
ARG python_version
5
- ARG arcgis_version="2.2.0 "
5
+ ARG arcgis_version="2.3.1 "
6
6
ARG sampleslink="https://github.com/Esri/arcgis-python-api/releases/download/v${arcgis_version}/samples.zip"
7
7
ARG githubfolder="arcgis-python-api"
8
8
ENV DOCKER_STACKS_JUPYTER_CMD="notebook"
You can’t perform that action at this time.
0 commit comments