Skip to content

Commit 1fa155e

Browse files
authored
Merge pull request #1499 from Esri/JR/lambda
Update Lambda Docker Image with latest 2.1.0 patch
2 parents 9c2e62e + 4629cfe commit 1fa155e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/LambdaBaseImage.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ LABEL org.opencontainers.image.source=https://github.com/esri/arcgis-python-api
1111
# install dependencies, then clean yum cache
1212
RUN yum -y install gcc krb5-devel krb5-server krb5-libs && yum clean all && rm -rf /var/cache/yum
1313
# install arcgis
14-
ARG ARCGIS_PYTHON_VERSION=2.1.0
14+
ARG ARCGIS_PYTHON_VERSION=2.1.0.3
1515
RUN pip3 install arcgis==${ARCGIS_PYTHON_VERSION} --target "${LAMBDA_TASK_ROOT}"
1616
# set entrypoint to app.py handler method
1717
# (note that app.py is missing from this base image)
1818
CMD [ "app.handler" ]
1919
# to use this base image, use FROM to specify its url
2020
# and `COPY app.py ${LAMBDA_TASK_ROOT}`
21-
# (copy your code into the lambda task root)
21+
# (copy your code into the lambda task root)

0 commit comments

Comments
 (0)