[ci] use python 3.10 as base docker image
Browse files
dockerfiles/dockerfile-samgis-base
CHANGED
|
@@ -10,7 +10,7 @@ ARG POETRY_CACHE_DIR=/tmp/poetry_cache
|
|
| 10 |
ARG RIE="https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie"
|
| 11 |
|
| 12 |
|
| 13 |
-
FROM python:3.
|
| 14 |
|
| 15 |
ARG ARCH
|
| 16 |
ARG LAMBDA_TASK_ROOT
|
|
@@ -56,7 +56,7 @@ RUN echo "# poetry config --list #" && poetry config --list
|
|
| 56 |
RUN poetry install --with ${DEPENDENCY_GROUP} --no-root
|
| 57 |
|
| 58 |
|
| 59 |
-
FROM python:3.
|
| 60 |
|
| 61 |
ARG ARCH
|
| 62 |
ARG LAMBDA_TASK_ROOT
|
|
|
|
| 10 |
ARG RIE="https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie"
|
| 11 |
|
| 12 |
|
| 13 |
+
FROM python:3.10-bookworm as builder_global
|
| 14 |
|
| 15 |
ARG ARCH
|
| 16 |
ARG LAMBDA_TASK_ROOT
|
|
|
|
| 56 |
RUN poetry install --with ${DEPENDENCY_GROUP} --no-root
|
| 57 |
|
| 58 |
|
| 59 |
+
FROM python:3.10-slim-bookworm as runtime
|
| 60 |
|
| 61 |
ARG ARCH
|
| 62 |
ARG LAMBDA_TASK_ROOT
|