From dcaa1440509ce299109b366ea85bf214514b8437 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 13:18:31 -0400 Subject: [PATCH 01/10] dockerfile --- examples/oae/Dockerfile | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 examples/oae/Dockerfile diff --git a/examples/oae/Dockerfile b/examples/oae/Dockerfile new file mode 100644 index 00000000..43779e8a --- /dev/null +++ b/examples/oae/Dockerfile @@ -0,0 +1,58 @@ +FROM python:3.12-slim-bookworm + +# Install system dependencies including git +RUN apt-get update \ + # Install aws-lambda-cpp build dependencies + && apt-get install -y \ + g++ \ + make \ + cmake \ + unzip \ + git \ + # cleanup package lists, they are not used anymore in this image + && rm -rf /var/lib/apt/lists/* \ + && apt-cache search linux-headers-generic + +ARG FUNCTION_DIR="/function" + +# Copy function code +RUN mkdir -p ${FUNCTION_DIR} + +# Update pip +RUN pip install --upgrade --ignore-installed pip wheel six setuptools \ + && pip install --upgrade --no-cache-dir --ignore-installed \ + awslambdaric \ + boto3 \ + redis \ + httplib2 \ + requests \ + numpy \ + scipy \ + pandas \ + pika \ + kafka-python \ + cloudpickle \ + ps-mem \ + tblib \ + psutil + +# Set working directory to function root directory +WORKDIR ${FUNCTION_DIR} + +# Add Lithops +COPY lithops_lambda.zip ${FUNCTION_DIR} +RUN unzip lithops_lambda.zip \ + && rm lithops_lambda.zip \ + && mkdir handler \ + && touch handler/__init__.py \ + && mv entry_point.py handler/ + +# Install packages from specific branches +RUN pip install \ + git+https://github.com/zarr-developers/VirtualiZarr.git@develop \ + s3fs \ + h5py + +# Entry point configuration for AWS Lambda +ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ] +CMD [ "handler.entry_point.lambda_handler" ] \ No newline at end of file From 8314582b5abffb3e352b216f4cd19c31fa137aae Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 13:18:45 -0400 Subject: [PATCH 02/10] readme --- examples/oae/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/oae/README.md diff --git a/examples/oae/README.md b/examples/oae/README.md new file mode 100644 index 00000000..b09b0c6d --- /dev/null +++ b/examples/oae/README.md @@ -0,0 +1,15 @@ +## Docker + +Build the runtime with + +```bash +lithops runtime build -b aws_lambda -f ./docker/Dockerfile virtualizarr-runtime +``` + +this might require you to edit the lithops source to add the flags `--provenance=false --no-cache` to the `docker build` command. (TODO: test removing these) + +Then deploy it with + +```bash +lithops runtime deploy -b aws_lambda virtualizarr-runtime +``` From 78d1ae47b839e50be35ae5b1e0f27145410edb69 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 13:18:57 -0400 Subject: [PATCH 03/10] notebook --- examples/oae/oae_refs_at_scale.ipynb | 4120 ++++++++++++++++++++++++++ 1 file changed, 4120 insertions(+) create mode 100644 examples/oae/oae_refs_at_scale.ipynb diff --git a/examples/oae/oae_refs_at_scale.ipynb b/examples/oae/oae_refs_at_scale.ipynb new file mode 100644 index 00000000..9911b359 --- /dev/null +++ b/examples/oae/oae_refs_at_scale.ipynb @@ -0,0 +1,4120 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "bb95b19e-43b2-42da-82da-b299d32410ef", + "metadata": {}, + "source": [ + "# Create references for [C]Worthy OAE dataset using VirtualiZarr" + ] + }, + { + "cell_type": "markdown", + "id": "fe0becac-7ef4-42b2-ab7f-98d5ad147cfe", + "metadata": {}, + "source": [ + "Tom Nicholas\n", + "\n", + "17th December 2024" + ] + }, + { + "cell_type": "markdown", + "id": "4e7827bb-ffe9-4c59-8485-12e034c18154", + "metadata": {}, + "source": [ + "Running this in a 32GB Coiled notebook in the same aws region as the data (us-west-2)" + ] + }, + { + "cell_type": "markdown", + "id": "5906e5ea-d967-41eb-845c-acd89cbb5d43", + "metadata": {}, + "source": [ + "## Problem:\n", + "\n", + "- Create a virtual zarr store pointing to ~500,000 files on S3, representing ~50TB altogether.\n", + "- Each file has the same structure, but the files need to be concatenated along 3 independent ensemble dimensions to make a logical datacube.\n", + "- The large data variables need to be saved as virtual references, but the small variables should just be loaded and inlined directly in the store." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "dc176063-4514-4cf8-b84f-4c02485a4b26", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: s3fs in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2025.3.2)\n", + "Requirement already satisfied: fsspec in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2025.3.2)\n", + "Requirement already satisfied: aiobotocore in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2.21.1)\n", + "Requirement already satisfied: boto3 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (1.37.1)\n", + "Collecting boto3\n", + " Using cached boto3-1.37.37-py3-none-any.whl.metadata (6.7 kB)\n", + "Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from s3fs) (3.11.16)\n", + "Requirement already satisfied: aioitertools<1.0.0,>=0.5.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (0.7.1)\n", + "Requirement already satisfied: botocore<1.37.2,>=1.37.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.37.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (2.9.0.post0)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.0.1)\n", + "Requirement already satisfied: multidict<7.0.0,>=6.0.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (6.1.0)\n", + "Requirement already satisfied: wrapt<2.0.0,>=1.10.10 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.17.0)\n", + "INFO: pip is looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", + " Using cached boto3-1.37.36-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.35-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.34-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.33-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.32-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.31-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.30-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: pip is still looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", + " Using cached boto3-1.37.29-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.28-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.27-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.26-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.25-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.\n", + " Using cached boto3-1.37.24-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.23-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.22-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.21-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.20-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.19-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.18-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.17-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.16-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.15-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.14-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.13-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.12-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.11-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.10-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.9-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.8-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.7-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.6-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.5-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.4-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.3-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.2-py3-none-any.whl.metadata (6.6 kB)\n", + "Requirement already satisfied: s3transfer<0.12.0,>=0.11.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from boto3) (0.11.3)\n", + "Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (2.6.1)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.2)\n", + "Requirement already satisfied: attrs>=17.3.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (25.3.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.5.0)\n", + "Requirement already satisfied: propcache>=0.2.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (0.3.1)\n", + "Requirement already satisfied: yarl<2.0,>=1.17.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.18.0)\n", + "Requirement already satisfied: typing_extensions>=3.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aioitertools<1.0.0,>=0.5.1->aiobotocore) (4.13.2)\n", + "Requirement already satisfied: urllib3!=2.2.0,<3,>=1.25.4 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from botocore<1.37.2,>=1.37.0->aiobotocore) (2.3.0)\n", + "Requirement already satisfied: six>=1.5 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from python-dateutil<3.0.0,>=2.1->aiobotocore) (1.17.0)\n", + "Requirement already satisfied: idna>=2.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.10)\n" + ] + } + ], + "source": [ + "!pip install -U s3fs fsspec aiobotocore boto3" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "4258d03f-e2c5-491d-b734-d81e13b98543", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'2025.3.1'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import xarray as xr\n", + "xr.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "fdaf624a-8122-40e3-8943-4406a1cf2b82", + "metadata": {}, + "outputs": [], + "source": [ + "import s3fs" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "4e0f9056-7af7-4053-80f3-6a8f6567e814", + "metadata": {}, + "outputs": [], + "source": [ + "import glob" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d616f321-fea8-456d-9087-5fd391af1e80", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'1.3.3.dev40+ge92c0ef'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import virtualizarr as vz\n", + "vz.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "29c83dc9-a3cf-4953-8378-4a46136df38d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'3.0.6'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import zarr\n", + "zarr.__version__" + ] + }, + { + "cell_type": "markdown", + "id": "53dba990-64c0-46a5-9d06-f81f48119ca2", + "metadata": {}, + "source": [ + "## Open example file using xarray" + ] + }, + { + "cell_type": "markdown", + "id": "f21c12cd-2018-4b9b-b215-f625ae1f261f", + "metadata": {}, + "source": [ + "Let's just look at what's inside one of these files first." + ] + }, + { + "cell_type": "markdown", + "id": "cb9977f1-1f37-4e20-84ba-54ee748f02e5", + "metadata": {}, + "source": [ + "The data is stored at [https://source.coop/repositories/cworthy/oae-efficiency-atlas/](https://source.coop/repositories/cworthy/oae-efficiency-atlas/)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "67339561-f0cd-4af6-af32-bd340317170d", + "metadata": {}, + "outputs": [], + "source": [ + "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "d8fed898-f95e-4fbc-8d22-6ce92d56ecbd", + "metadata": {}, + "outputs": [], + "source": [ + "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "ccbd4739-b1df-472a-b1c0-fcccfab5bf9e", + "metadata": {}, + "outputs": [], + "source": [ + "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "d2781c91-2afb-4ed1-8abb-69eca8d3dc23", + "metadata": {}, + "outputs": [], + "source": [ + "fs = s3fs.S3FileSystem(**s3fs_kwargs)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "f2a35ce4-4751-4cd3-9652-fc13a358db4b", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 6.95 s, sys: 2.51 s, total: 9.46 s\n", + "Wall time: 45.5 s\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 327MB\n",
+       "Dimensions:                     (injection_date: 1, elapsed_time: 1, d2: 2,\n",
+       "                                 z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, nlat: 384, nlon: 320,\n",
+       "                                 polygon_id: 1)\n",
+       "Coordinates: (12/64)\n",
+       "    time_bound                  (injection_date, elapsed_time, d2) float64 16B ...\n",
+       "    time                        (injection_date, elapsed_time) float64 8B ...\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "    ...                          ...\n",
+       "    sflux_factor                float64 8B ...\n",
+       "    nsurface_t                  float64 8B ...\n",
+       "    nsurface_u                  float64 8B ...\n",
+       "  * polygon_id                  (polygon_id) int64 8B 0\n",
+       "  * injection_date              (injection_date) int64 8B 0\n",
+       "  * elapsed_time                (elapsed_time) int64 8B 0\n",
+       "Dimensions without coordinates: d2, nlat, nlon\n",
+       "Data variables: (12/34)\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    co3_sat_arag                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 327MB\n", + "Dimensions: (injection_date: 1, elapsed_time: 1, d2: 2,\n", + " z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, nlat: 384, nlon: 320,\n", + " polygon_id: 1)\n", + "Coordinates: (12/64)\n", + " time_bound (injection_date, elapsed_time, d2) float64 16B ...\n", + " time (injection_date, elapsed_time) float64 8B ...\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " ... ...\n", + " sflux_factor float64 8B ...\n", + " nsurface_t float64 8B ...\n", + " nsurface_u float64 8B ...\n", + " * polygon_id (polygon_id) int64 8B 0\n", + " * injection_date (injection_date) int64 8B 0\n", + " * elapsed_time (elapsed_time) int64 8B 0\n", + "Dimensions without coordinates: d2, nlat, nlon\n", + "Data variables: (12/34)\n", + " CO3 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " pH_3D (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " CO3_ALT_CO2 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " pH_3D_ALT_CO2 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " co3_sat_calc (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " co3_sat_arag (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ...\n", + " ... ...\n", + " ALK_ALT_CO2_zint_100m (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + " STF_ALK_ALT_CO2 (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + " tend_zint_100m_DIC (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + " tend_zint_100m_DIC_ALT_CO2 (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + " tend_zint_100m_ALK (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + " tend_zint_100m_ALK_ALT_CO2 (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ...\n", + "Attributes:\n", + " title: smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n", + " history: none\n", + " Conventions: CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n", + " time_period_freq: month_1\n", + " model_doi_url: https://doi.org/10.5065/D67H1H0V\n", + " contents: Diagnostic and Prognostic Variables\n", + " source: CCSM POP2, the CCSM Ocean Component\n", + " revision: $Id$\n", + " calendar: All years have exactly 365 days.\n", + " start_time: This dataset was created on 2023-05-29 at 09:20:38.7\n", + " cell_methods: cell_methods = time: mean ==> the variable values are ..." + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "ds = xr.open_dataset(fs.open(single_file_url), engine='h5netcdf', decode_times=False)\n", + "ds" + ] + }, + { + "cell_type": "markdown", + "id": "8d344198-d95e-48fc-93a7-9149f73fc73c", + "metadata": {}, + "source": [ + "Whilst we can access each file like this, the issues with this approach are:\n", + "- The files comprise a logical datacube, and it would be much clearer for users to open that up as a lazily representation of the entire dataset immediately\n", + "- We could ask users to run `xr.open_mfdataset` with a specific incantation, but to open and combine 500,000 files with xarray would take hours, even if parallelized, because of\n", + " - the need to scan the entirety of all the all the non-cloud-optimized netCDF files\n", + " - the need to perform alignment checks when concatenating the contents of all the files together\n", + "- This expensive opening and combining operation would be needed every single time a user wants to access the dataset.\n", + "\n", + "Instead we're going to open and combine only once, generating pointers to the chunks inside the files in the form of virtual references which we then cache to persistent storage." + ] + }, + { + "cell_type": "markdown", + "id": "f81fa92c-7d65-41f9-8ad0-374f81a5161f", + "metadata": {}, + "source": [ + "### Specify which variables we want to load and which to generate virtual references for" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "721fb08a-e51d-46ae-9687-de188d81b825", + "metadata": {}, + "outputs": [], + "source": [ + "# needed to do combine_by_coords, and each has only one value on each dataset\n", + "ENSEMBLE_DIMENSION_COORDS = [\n", + " 'elapsed_time',\n", + " 'polygon_id',\n", + " 'injection_date',\n", + "]\n", + "OTHER_DIMENSION_COORDS = [\n", + " 'time_bounds',\n", + " 'z_t',\n", + " 'z_w',\n", + " 'z_t_150m',\n", + " 'z_w_bot',\n", + " 'z_w_top',\n", + "]\n", + "# so tiny it takes less memory to store their values than to store references to them\n", + "SCALARS = [\n", + " 'T0_Kelvin',\n", + " 'cp_air',\n", + " 'cp_sw',\n", + " 'days_in_norm_year',\n", + " 'fwflux_factor',\n", + " 'grav',\n", + " 'heat_to_PW',\n", + " 'hflux_factor',\n", + " 'latent_heat_fusion',\n", + " 'latent_heat_fusion_mks',\n", + " 'latent_heat_vapor',\n", + " 'mass_to_Sv',\n", + " 'momentum_factor',\n", + " 'nsurface_t',\n", + " 'nsurface_u',\n", + " 'ocn_ref_salinity',\n", + " 'omega',\n", + " 'ppt_to_salt',\n", + " 'radius',\n", + " 'rho_air',\n", + " 'rho_fw',\n", + " 'salinity_factor',\n", + " 'salt_to_Svppt',\n", + " 'salt_to_mmday',\n", + " 'salt_to_ppt',\n", + " 'sea_ice_salinity',\n", + " 'sflux_factor',\n", + " 'sound',\n", + " 'vonkar',\n", + " 'stefan_boltzmann'\n", + "]\n", + "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS+ SCALARS" + ] + }, + { + "cell_type": "markdown", + "id": "31ac725b-bbfc-4062-8a3b-c1bc38bf76b3", + "metadata": {}, + "source": [ + "## Open example file as virtual refs" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "0ea3a991-456f-421f-b7db-4104e89c432e", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 14 s, sys: 4.87 s, total: 18.9 s\n", + "Wall time: 1min 30s\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 326MB\n",
+       "Dimensions:                     (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, polygon_id: 1, injection_date: 1,\n",
+       "                                 elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n",
+       "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "    days_in_norm_year           float64 8B ...\n",
+       "    ...                          ...\n",
+       "    HTE                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUS                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUW                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    rho_sw                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 8B Man...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 326MB\n", + "Dimensions: (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, polygon_id: 1, injection_date: 1,\n", + " elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n", + "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " days_in_norm_year float64 8B ...\n", + " ... ...\n", + " HTE (nlat, nlon) float64 983kB ManifestArray the variable values are ..." + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "vds = vz.open_virtual_dataset(\n", + " single_file_url, \n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs}\n", + ")\n", + "vds" + ] + }, + { + "cell_type": "markdown", + "id": "e5b4626c-2b23-48d7-8299-3bcb0a526996", + "metadata": {}, + "source": [ + "(Note: this is approximately twice as slow as lazily opening the xarray dataset with `xr.open_dataset` because the current implementation of `open_virtual_dataset` scans the entire file to generate the virtual references, then calls `xr.open_dataset` all over again to read the `loadable_variables`, so the whole file is being scanned twice. Implementing [virtualizarr issue #542](https://github.com/zarr-developers/VirtualiZarr/issues/542) would therefore likely cut this scanning time in half.)" + ] + }, + { + "cell_type": "markdown", + "id": "87e0d8f5-fdf0-46fe-8396-3f1f8b33298e", + "metadata": {}, + "source": [ + "### Check correctness" + ] + }, + { + "cell_type": "markdown", + "id": "f48b38b2-ff9d-431f-a626-77f03e8e5b97", + "metadata": {}, + "source": [ + "Let's double check that serializing the references then opening the data via the references gives the same result as just opening with xarray directly." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "a23fdfa1-824e-42d0-b6d0-afe7c5c92861", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/coiled/env/lib/python3.12/site-packages/virtualizarr/utils.py:173: UserWarning: Multiple compressors found in v3 metadata. Using the first compressor, others will be ignored. This may affect data compatibility.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "refs_dict = vds.virtualize.to_kerchunk(format='dict')" + ] + }, + { + "cell_type": "markdown", + "id": "66500670-e9b3-4e3c-b956-64e4eaf1505c", + "metadata": {}, + "source": [ + "TODO use an in-memory icechunk store instead" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "9509b705-076f-44a9-b943-a925c5c21e44", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "unrecognized engine 'kerchunk' must be one of your download engines: ['h5netcdf', 'store', 'zarr']. To install additional dependencies, see:\nhttps://docs.xarray.dev/en/stable/user-guide/io.html \nhttps://docs.xarray.dev/en/stable/getting-started-guide/installing.html", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[19], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m result_ds \u001b[38;5;241m=\u001b[39m \u001b[43mxr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_dataset\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrefs_dict\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mengine\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mkerchunk\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/coiled/env/lib/python3.12/site-packages/xarray/backends/api.py:673\u001b[0m, in \u001b[0;36mopen_dataset\u001b[0;34m(filename_or_obj, engine, chunks, cache, decode_cf, mask_and_scale, decode_times, decode_timedelta, use_cftime, concat_characters, decode_coords, drop_variables, inline_array, chunked_array_type, from_array_kwargs, backend_kwargs, **kwargs)\u001b[0m\n\u001b[1;32m 670\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m from_array_kwargs \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 671\u001b[0m from_array_kwargs \u001b[38;5;241m=\u001b[39m {}\n\u001b[0;32m--> 673\u001b[0m backend \u001b[38;5;241m=\u001b[39m \u001b[43mplugins\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_backend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mengine\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 675\u001b[0m decoders \u001b[38;5;241m=\u001b[39m _resolve_decoders_kwargs(\n\u001b[1;32m 676\u001b[0m decode_cf,\n\u001b[1;32m 677\u001b[0m open_backend_dataset_parameters\u001b[38;5;241m=\u001b[39mbackend\u001b[38;5;241m.\u001b[39mopen_dataset_parameters,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 683\u001b[0m decode_coords\u001b[38;5;241m=\u001b[39mdecode_coords,\n\u001b[1;32m 684\u001b[0m )\n\u001b[1;32m 686\u001b[0m overwrite_encoded_chunks \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124moverwrite_encoded_chunks\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m)\n", + "File \u001b[0;32m/opt/coiled/env/lib/python3.12/site-packages/xarray/backends/plugins.py:202\u001b[0m, in \u001b[0;36mget_backend\u001b[0;34m(engine)\u001b[0m\n\u001b[1;32m 200\u001b[0m engines \u001b[38;5;241m=\u001b[39m list_engines()\n\u001b[1;32m 201\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m engine \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m engines:\n\u001b[0;32m--> 202\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 203\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124munrecognized engine \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mengine\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m must be one of your download engines: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mlist\u001b[39m(engines)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m. \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 204\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mTo install additional dependencies, see:\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://docs.xarray.dev/en/stable/user-guide/io.html \u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 206\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://docs.xarray.dev/en/stable/getting-started-guide/installing.html\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 207\u001b[0m )\n\u001b[1;32m 208\u001b[0m backend \u001b[38;5;241m=\u001b[39m engines[engine]\n\u001b[1;32m 209\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28missubclass\u001b[39m(engine, BackendEntrypoint):\n", + "\u001b[0;31mValueError\u001b[0m: unrecognized engine 'kerchunk' must be one of your download engines: ['h5netcdf', 'store', 'zarr']. To install additional dependencies, see:\nhttps://docs.xarray.dev/en/stable/user-guide/io.html \nhttps://docs.xarray.dev/en/stable/getting-started-guide/installing.html" + ] + } + ], + "source": [ + "result_ds = xr.open_dataset(refs_dict, engine=\"kerchunk\")" + ] + }, + { + "cell_type": "markdown", + "id": "00f546a2-3d34-46d4-b9a7-15948522721f", + "metadata": {}, + "source": [ + "### Estimate RAM use to virtualize entire dataset" + ] + }, + { + "cell_type": "markdown", + "id": "81fe4944-3e29-4d9f-9298-806a59da9fbe", + "metadata": {}, + "source": [ + "How much RAM does it take to store this virtual dataset on the client?" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "11f5b603-0efc-4413-996f-76922e43ba29", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3.204" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vds.virtualize.nbytes / 1e3 # in kB" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "e501e3fa-184b-4cc1-b5e2-2ddb06cc6b1b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "120" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import sys\n", + "\n", + "sys.getsizeof(vds)" + ] + }, + { + "cell_type": "markdown", + "id": "c0e723ce-5175-4054-a968-7068d1b0c811", + "metadata": {}, + "source": [ + "Only 24kB. We need to do this for ~500,000 files, send all the results back over the network, then store them all in RAM in this notebook process. So if we would expect this Coiled notebook's machine to need about 500,000 * 24kB ~= 11.8GB of RAM to hold the virtual references to our entire 50TB dataset in memory at once." + ] + }, + { + "cell_type": "markdown", + "id": "dc03a808-5bcb-45ea-a4c6-f30673d3a761", + "metadata": {}, + "source": [ + "## Paths to many files" + ] + }, + { + "cell_type": "markdown", + "id": "a48acb1e-adb6-43e3-a5b7-f827567e95ed", + "metadata": {}, + "source": [ + "Each directory contains 180 files, comprising one simulation. These need to be concatenated along time, before they can be concatenated with files in other directories." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "80188176-48b2-4393-86c5-45d283e4fdb7", + "metadata": {}, + "outputs": [], + "source": [ + "single_simulation_path = bucket_url + 'data/experiments/000/01/'" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "ad0190f9-070a-49f4-a16b-4600e0169148", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-02.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-03.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-04.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-05.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-06.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-07.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-08.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-09.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-10.nc']" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "single_simulation_paths = fs.ls(single_simulation_path)\n", + "single_simulation_urls = ['s3://' + path for path in single_simulation_paths]\n", + "single_simulation_urls[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "175284fc-83a2-4693-9f0f-f6fb1a2dc9c4", + "metadata": {}, + "outputs": [], + "source": [ + "from xarray.backends.common import _find_absolute_paths" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "20f7ff5d-66bb-45bc-9ec9-5ff7f88ef697", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc']" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "single_simulation_urls[0:1]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "a7ef9fe2-fea5-49db-a08b-b118d17e8c0a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc']" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "_find_absolute_paths(single_simulation_urls[0:1])" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "d2637966-aa8b-43ea-b739-c7526ede684f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "_find_absolute_paths(single_simulation_urls[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "9f313ae2-4906-4cfd-aa13-8420143d92de", + "metadata": {}, + "outputs": [], + "source": [ + "def is_globbable(path: str) -> bool:\n", + " return any(el in path for el in ['*', '**', '[', ']'])\n", + " \n", + "\n", + "def absolute_paths(paths: str) -> list[str]:\n", + " import fsspec\n", + " \n", + " fs, _, _ = fsspec.core.get_fs_token_paths(\n", + " paths,\n", + " mode=\"rb\",\n", + " storage_options={}.get(\"backend_kwargs\", {}).get(\n", + " \"storage_options\", {}\n", + " ),\n", + " expand=False,\n", + " )\n", + " \n", + " if is_globbable(paths):\n", + " print(fs._strip_protocol(paths))\n", + " tmp_paths = fs.glob(fs._strip_protocol(paths)) # finds directories\n", + " print(tmp_paths)\n", + " else:\n", + " tmp_paths = [paths] # single string representing remote non-http uri that is absolute rather than a glob\n", + " return [fs.get_mapper(path) for path in tmp_paths]" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "cd4df64e-4d7e-4a83-8faf-806034e6e83a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "absolute_paths(single_simulation_urls[0])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef9c918e-65a2-411d-a930-5e5bd67f9df2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "8e0b5523-7910-4044-9850-616e534f77d2", + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 13.7 s, sys: 4.78 s, total: 18.5 s\n", + "Wall time: 1min 36s\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 326MB\n",
+       "Dimensions:                     (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, polygon_id: 1, injection_date: 1,\n",
+       "                                 elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n",
+       "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "    days_in_norm_year           float64 8B ...\n",
+       "    ...                          ...\n",
+       "    HTE                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUS                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUW                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    rho_sw                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 8B Man...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 326MB\n", + "Dimensions: (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, polygon_id: 1, injection_date: 1,\n", + " elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n", + "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " days_in_norm_year float64 8B ...\n", + " ... ...\n", + " HTE (nlat, nlon) float64 983kB ManifestArray the variable values are ..." + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "combined_vds_single_simulation = open_virtual_mfdataset(\n", + " single_simulation_urls[0:1],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", \n", + " compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs}\n", + ")\n", + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "8b294bfb-7802-4afc-a1ae-22bd618a9b1a", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 27.3 s, sys: 10 s, total: 37.3 s\n", + "Wall time: 3min 15s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/opt/coiled/env/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 633MB\n",
+       "Dimensions:                     (injection_date: 1, elapsed_time: 2,\n",
+       "                                 polygon_id: 1, z_t: 60, nlat: 384, nlon: 320,\n",
+       "                                 z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, d2: 2)\n",
+       "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "    days_in_norm_year           float64 8B ...\n",
+       "    ...                          ...\n",
+       "    HTE                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUS                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUW                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    rho_sw                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 16B Ma...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 633MB\n", + "Dimensions: (injection_date: 1, elapsed_time: 2,\n", + " polygon_id: 1, z_t: 60, nlat: 384, nlon: 320,\n", + " z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, d2: 2)\n", + "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " days_in_norm_year float64 8B ...\n", + " ... ...\n", + " HTE (nlat, nlon) float64 983kB ManifestArray the variable values are ..." + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "combined_vds_single_simulation = open_virtual_mfdataset(\n", + " single_simulation_urls[0:2],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs}\n", + ")\n", + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "23fb97af-77a2-437a-85bb-2f1556228446", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4.364" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "combined_vds_single_simulation.virtualize.nbytes / 1e3 # in kB" + ] + }, + { + "cell_type": "markdown", + "id": "bda53123-bf49-41c8-9917-06fd192d4dbe", + "metadata": {}, + "source": [ + "(Good - the virtual dataset grows in size < proportionally to the number of references)" + ] + }, + { + "cell_type": "markdown", + "id": "856a246b-6a6d-4f9a-9cc0-ff3bf857fd2a", + "metadata": {}, + "source": [ + "### Open all virtual references for one simulation in parallel" + ] + }, + { + "cell_type": "markdown", + "id": "616f0816-a057-48f9-b4f8-90fc4fa066c6", + "metadata": {}, + "source": [ + "Let's try parallelizing the generation of virtual references for each file." + ] + }, + { + "cell_type": "markdown", + "id": "7727808f-9fa0-4c0e-8135-aa91c1585dae", + "metadata": {}, + "source": [ + "We're going to use Lithops to do this using serverless AWS Lambda functions, so we need to have a `.lithops_config` file in the root of the directory we are running the notebook from." + ] + }, + { + "cell_type": "raw", + "id": "d8f959f6-33f7-4f85-b13f-9f8ea92bc0e1", + "metadata": {}, + "source": [ + "# contents of .lithops_config\n", + "lithops: \n", + " backend: aws_lambda\n", + "\n", + "aws:\n", + " access_key_id: \n", + " secret_access_key: \n", + " region: us-west-2\n", + "\n", + "aws_lambda:\n", + " execution_role: \n", + " runtime: " + ] + }, + { + "cell_type": "markdown", + "id": "bdf77ec3-8b4e-4e6e-94c0-09f3a902d3fc", + "metadata": {}, + "source": [ + "(Or we can just enter temporary credentials as environment variables)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "7f42dd80-7a59-4190-93d7-3976e410f558", + "metadata": {}, + "outputs": [], + "source": [ + "!export AWS_ACCESS_KEY_ID=\"ASIAS6J7QP4KNIRXGXUH\"\n", + "!export AWS_SECRET_ACCESS_KEY=\"Glh+W/MC2eN1/iYz8BfGgBZDq9L6NvnQOD/pUkeO\"\n", + "!export AWS_SESSION_TOKEN=\"IQoJb3JpZ2luX2VjEDgaCXVzLWVhc3QtMSJIMEYCIQD/7ilvW5S8ePBdDA7S5yBknkk6lFYbWTBGFtGwj/Z9YQIhAMfPbq1noRSifolXGds/PNDLi1jUx+Fx5ALPT6upJMTUKokDCMH//////////wEQABoMMjAyNTMzNTM1NTA4IgwZB2H87s7Dx9Js34Iq3QILlumXGH0aOsiOvbe5mrEx41nKlma48XrfUifNSaXCpgrYYHqNK7Xtz6hCCnVIWAkwNHa0bmYW8gmOA3dVxVj5LDJ84TvvyiJ23Rfl6BxDFc66I28zSnxgffXUiqTJ3XGn3e3Kn6CjUkYdaE3LC0XWYn3SDZTi0ycwWyZpiPmngtluLQV0+LEufq/Nl4R9t9ech492cnO7UvtH+bp8n0A75DZtKweGX7FPOveZRG//uLQMZX/HFW4wcBaxPp/lBBIBJW1kMJuUthg6VY25Xbs5NdlRePagxoma7QEUcpeOuGowK9k3wEwnPsDrHsZGg+wt+8Ai5sad4gdXza7RD+5GueWAIIoLM+WEyow5QWH+UcA/NRzoeADt7Lt9t3kPA99vNYGqd3M8648lq2GnaZCgHRPUqQO9PQT1QWe6iov9BHu1wlfu0uiKfcPAoFgHOVZzJcQlM9K1srmNCcjsMJnLmcAGOqUBGVqLwNqzMzsSF9Q71NU9hkT7ugE1CCJ63K8yJHH20Sgv2gGvQQCi5uQyl7tllD6r1HbWhP9ySTrPc+ViLyjY8oiKSucb37Jn/TNMVQtcfO/vhiR2w4JJeMLPgfyi0MlhMcyWM849Jbp+lgWNLOX3vRAKNMNnEXG0ZySIh9yHrPyp/iyPgz2GCesiDCKosZWEHtmpoFYIffrwZgjCvxuzYuHuSBq8\"" + ] + }, + { + "cell_type": "markdown", + "id": "e1beb49c-384b-44f6-b0c1-9d3ff5b8b13a", + "metadata": {}, + "source": [ + "We also need to build a lithops runtime in order to package up the dependencies that each serverless function will need (i.e. virtualizarr and its dependencies). But we did this earlier." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "90fd4e78-b7a4-47f0-960b-b037019fd54b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "6ed0176e-35ad-4c5b-9b29-51e6de004aa8", + "metadata": {}, + "source": [ + "Now we can run reference generation in parallel" + ] + }, + { + "cell_type": "markdown", + "id": "5b1e1290-3d6d-4b7d-852a-7244bac12954", + "metadata": {}, + "source": [ + "Try it for just two files first" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "aeb9a9ab-733d-4054-8bfe-1f223308e22e", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-04-21 11:41:20,558 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-21 11:41:20,722 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-21 11:41:21,489 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-21 11:41:21,492 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-21 11:41:21,578 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-21 11:41:22,096 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-21 11:41:22,099 [INFO] invokers.py:119 -- ExecutorID a73d22-1 | JobID M000 - Selected Runtime: virtualizarr-runtime - 1000MB\n" + ] + }, + { + "ename": "Exception", + "evalue": "The indicated runtime 'virtualizarr-runtime' is running Python 3.10 and it is not compatible with the local Python version 3.12", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mException\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:351\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 347\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 348\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 349\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[1;32m 350\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[0;32m--> 351\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 352\u001b[0m open_func,\n\u001b[1;32m 353\u001b[0m paths1d,\n\u001b[1;32m 354\u001b[0m )\n\u001b[1;32m 355\u001b[0m )\n\u001b[1;32m 357\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 358\u001b[0m \n\u001b[1;32m 359\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/parallel.py:309\u001b[0m, in \u001b[0;36mLithopsEagerFunctionExecutor.map\u001b[0;34m(self, fn, timeout, chunksize, *iterables)\u001b[0m\n\u001b[1;32m 305\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mlithops\u001b[39;00m \u001b[38;5;66;03m# type: ignore[import-untyped]\u001b[39;00m\n\u001b[1;32m 307\u001b[0m fexec \u001b[38;5;241m=\u001b[39m lithops\u001b[38;5;241m.\u001b[39mFunctionExecutor()\n\u001b[0;32m--> 309\u001b[0m futures \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mmap(fn, \u001b[38;5;241m*\u001b[39miterables)\n\u001b[1;32m 310\u001b[0m results \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mget_result(futures)\n\u001b[1;32m 312\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m results\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:257\u001b[0m, in \u001b[0;36mFunctionExecutor.map\u001b[0;34m(self, map_function, map_iterdata, chunksize, extra_args, extra_env, runtime_memory, obj_chunk_size, obj_chunk_number, obj_newline, timeout, include_modules, exclude_modules)\u001b[0m\n\u001b[1;32m 254\u001b[0m job_id \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_create_job_id(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mM\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 255\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlast_call \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmap\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[0;32m--> 257\u001b[0m runtime_meta \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39minvoker\u001b[38;5;241m.\u001b[39mselect_runtime(job_id, runtime_memory)\n\u001b[1;32m 259\u001b[0m job \u001b[38;5;241m=\u001b[39m create_map_job(\n\u001b[1;32m 260\u001b[0m config\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig,\n\u001b[1;32m 261\u001b[0m internal_storage\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39minternal_storage,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 276\u001b[0m obj_newline\u001b[38;5;241m=\u001b[39mobj_newline\n\u001b[1;32m 277\u001b[0m )\n\u001b[1;32m 279\u001b[0m futures \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39minvoker\u001b[38;5;241m.\u001b[39mrun_job(job)\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/invokers.py:140\u001b[0m, in \u001b[0;36mInvoker.select_runtime\u001b[0;34m(self, job_id, runtime_memory)\u001b[0m\n\u001b[1;32m 138\u001b[0m py_remote_version \u001b[38;5;241m=\u001b[39m runtime_meta[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mpython_version\u001b[39m\u001b[38;5;124m'\u001b[39m]\n\u001b[1;32m 139\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m py_local_version \u001b[38;5;241m!=\u001b[39m py_remote_version:\n\u001b[0;32m--> 140\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m((\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mThe indicated runtime \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m is running Python \u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m and it \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 141\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mis not compatible with the local Python version \u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 142\u001b[0m \u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mruntime_name, py_remote_version, py_local_version))\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m runtime_meta\n", + "\u001b[0;31mException\u001b[0m: The indicated runtime 'virtualizarr-runtime' is running Python 3.10 and it is not compatible with the local Python version 3.12" + ] + } + ], + "source": [ + "%%time\n", + "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", + " single_simulation_urls[0:2],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs},\n", + " parallel='lithops',\n", + ")\n", + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "markdown", + "id": "f8bd7360-72ea-4595-998a-354368182c39", + "metadata": {}, + "source": [ + "### The whole dataset" + ] + }, + { + "cell_type": "markdown", + "id": "79772a6a-aded-4249-b5eb-4f2e68a1543d", + "metadata": {}, + "source": [ + "Now in theory we could create virtual references for the entire dataset just using a single function call!:\n", + "\n", + "```python\n", + "combined_vds = open_virtual_mfdataset(\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/**',\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=True,\n", + " reader_options={'storage_options': s3fs_kwargs}\n", + " parallel='lithops',\n", + ")\n", + "```\n", + "\n", + "This would automatically use 500,000 AWS Lambda functions to create references for each of our files, send them all back to the client (this notebook) and then combine them here." + ] + }, + { + "cell_type": "markdown", + "id": "f89b12a6-b657-44fd-8cf6-488de28b235a", + "metadata": {}, + "source": [ + "However in practice that would be a little silly, because:\n", + "1. AWS accounts are only allowed to run a maximum of 1000 Lambdas concurrently by default, and I don't know anyone at AWS to ask nicely to up that default limit. That means our 500,000 functions would actually run in 500 batches of 1000.\n", + "2. 500 batches x 2 minutes each = 16 hours, which is long enough that if something unexpected goes wrong I would like not to have to start all over again." + ] + }, + { + "cell_type": "markdown", + "id": "80b0476b-e6c9-41b6-9358-451d0ea7c0aa", + "metadata": {}, + "source": [ + "Instead let's generate references for part of the dataset at a time, and commit those references once generated, so that if something goes wrong we can pick up from the last commit. We will still use `open_virtual_mfdataset`, but on 4 simulations at once (so 180 * 4 = 720 files at a time), because that's <1000 so each set of references will still be maximally parallelized.\n", + "\n", + "We will write each batch of references out into an Icechunk store, making an immutable commit before we start to generate the next batch." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5b5ab169-429b-47d4-a304-25ab78be7452", + "metadata": {}, + "outputs": [], + "source": [ + "import icechunk\n", + "\n", + "storage_config = icechunk.StorageConfig.s3_from_env(\n", + " bucket=\"icechunk-test\",\n", + " prefix=\"quickstart-demo-1\"\n", + ")\n", + "repo = icechunk.Repository.create(storage_config)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7731d4e2-f636-43a7-9384-35cec05ac373", + "metadata": {}, + "outputs": [], + "source": [ + "session = repo.writable_session(\"main\")\n", + "store = session.store()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8cd66c7e-c337-4ad9-ab54-ee40925f93c1", + "metadata": {}, + "outputs": [], + "source": [ + "polygon_ids = ['000', '001'] # etc..." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a7183f2a-d8ac-4270-82ef-6144601bc363", + "metadata": {}, + "outputs": [], + "source": [ + "%%time\n", + "# loop over the entire dataset\n", + "for polygon_id in polygon_ids:\n", + " \n", + " # generate references for 720 files in parallel and combine them\n", + " polygon_vds = open_virtual_mfdataset(\n", + " f's3://cworthy/oae-efficiency-atlas/data/experiments/{polygon_id}/**',\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=True,\n", + " reader_options={'storage_options': s3fs_kwargs}\n", + " parallel='lithops',\n", + " )\n", + "\n", + " # have to treat the first commit differently as there are no arrays to append to in the store yet\n", + " if polygon_id == '000':\n", + " virtual_ds.virtualize.to_icechunk(store)\n", + " else:\n", + " virtual_ds.virtualize.to_icechunk(store, append_dim='polygon_id')\n", + "\n", + " store.commit(f\"wrote virtual references for polygon={polygon_id}\")" + ] + }, + { + "cell_type": "markdown", + "id": "52bcbbc9-3e10-4093-9d02-f9cc00b8422b", + "metadata": {}, + "source": [ + "Once that's run, we're done!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ec58d9b5-8c68-4bda-9bb1-d0ccd1811016", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "eec7645a-2b4f-4ac9-9e7e-270dff798126", + "metadata": {}, + "source": [ + "### Accessing the data" + ] + }, + { + "cell_type": "markdown", + "id": "030b1331-7769-40a9-878b-2818d190c327", + "metadata": {}, + "source": [ + "To access the data, users first start a read-only session with the icechunk store" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9c73bced-dc80-491d-8a50-add8d81afdc6", + "metadata": {}, + "outputs": [], + "source": [ + "import icechunk\n", + "\n", + "storage_config = icechunk.StorageConfig.s3_from_env(\n", + " bucket=\"icechunk-test\",\n", + " prefix=\"quickstart-demo-1\"\n", + ")\n", + "repo = icechunk.Repository.open(storage_config)\n", + "store = repo.readonly_session()" + ] + }, + { + "cell_type": "markdown", + "id": "55fb5cfe-c570-46ee-a0d9-cbb20aab748c", + "metadata": {}, + "source": [ + "Then they only need to call `xarray.open_zarr` to get at the entire dataset!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b037f0ff-a040-4d27-a5a8-a43ba05f6f75", + "metadata": {}, + "outputs": [], + "source": [ + "%%time\n", + "ds = xr.open_zarr(repo.store(), consolidated=False)\n", + "ds" + ] + }, + { + "cell_type": "markdown", + "id": "04a706d7-4a86-4097-9620-482de1e0b60c", + "metadata": {}, + "source": [ + "Notice how quick that was to open - that's because now instead of the user having to touch hundreds of thousands of netCDF files to see whats inside, they only need to read the lightweight metadata that we extracted from those files and committed to icechunk for them." + ] + }, + { + "cell_type": "markdown", + "id": "6b66a47e-c522-48c0-8aef-8766df921f6f", + "metadata": {}, + "source": [ + "This access pattern is entirely serverless - there is no icechunk server between the user and the data, they are just directly reading files on S3." + ] + }, + { + "cell_type": "markdown", + "id": "e56cde4a-73a4-4436-b10e-27819902dc01", + "metadata": {}, + "source": [ + "Icechunk supports an arbitrary number of concurrent users trying to read the same data, and we the data provider can even make updates to the data as it is being read without causing any consistency problems!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9be3935c-6740-4880-a33c-9d85f4184646", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 07ca3a4c9a52d50484d323a89c2d02de0813bd30 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 15:16:38 -0400 Subject: [PATCH 04/10] add all dependencies to dockerfile --- examples/oae/Dockerfile | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/examples/oae/Dockerfile b/examples/oae/Dockerfile index 43779e8a..bda8d6ba 100644 --- a/examples/oae/Dockerfile +++ b/examples/oae/Dockerfile @@ -48,11 +48,26 @@ RUN unzip lithops_lambda.zip \ && mv entry_point.py handler/ # Install packages from specific branches +# TODO all of these could be replaced with `pip install 'virtualizarr[hdf]'` once I can use a released version RUN pip install \ - git+https://github.com/zarr-developers/VirtualiZarr.git@develop \ + numpy>=2.0.0 \ + universal-pathlib \ + numcodecs>=0.15.1 \ + ujson \ + packaging \ + zarr>=3.0.2 \ + icechunk \ s3fs \ - h5py - + fsspec \ + requests \ + aiohttp \ + h5py \ + hdf5plugin \ + imagecodecs \ + imagecodecs-numcodecs==2024.6.1 \ + obstore>=0.5.1 \ + git+https://github.com/zarr-developers/VirtualiZarr.git@develop + # Entry point configuration for AWS Lambda ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ] CMD [ "handler.entry_point.lambda_handler" ] \ No newline at end of file From 8c00f00e677efb6443b9d61c0d4100f65b45cfb1 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 15:17:08 -0400 Subject: [PATCH 05/10] small notebook to get straight to testing the hard bit --- examples/oae/mvp.ipynb | 28331 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 28331 insertions(+) create mode 100644 examples/oae/mvp.ipynb diff --git a/examples/oae/mvp.ipynb b/examples/oae/mvp.ipynb new file mode 100644 index 00000000..626cbcde --- /dev/null +++ b/examples/oae/mvp.ipynb @@ -0,0 +1,28331 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: s3fs in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2025.3.2)\n", + "Requirement already satisfied: fsspec in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2025.3.2)\n", + "Requirement already satisfied: aiobotocore in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2.21.1)\n", + "Requirement already satisfied: boto3 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (1.37.1)\n", + "Collecting boto3\n", + " Using cached boto3-1.37.38-py3-none-any.whl.metadata (6.7 kB)\n", + "Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from s3fs) (3.11.16)\n", + "Requirement already satisfied: aioitertools<1.0.0,>=0.5.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (0.7.1)\n", + "Requirement already satisfied: botocore<1.37.2,>=1.37.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.37.1)\n", + "Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (2.9.0.post0)\n", + "Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.0.1)\n", + "Requirement already satisfied: multidict<7.0.0,>=6.0.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (6.1.0)\n", + "Requirement already satisfied: wrapt<2.0.0,>=1.10.10 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.17.0)\n", + "INFO: pip is looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", + " Using cached boto3-1.37.37-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.36-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.35-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.34-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.33-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.32-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.31-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: pip is still looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", + " Using cached boto3-1.37.30-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.29-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.28-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.27-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.26-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.\n", + " Using cached boto3-1.37.25-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.24-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.23-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.22-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.21-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.20-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.19-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.18-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.17-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.16-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.15-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.14-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.13-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.12-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.11-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.10-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.37.9-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.8-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.7-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.6-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.5-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.4-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.3-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.2-py3-none-any.whl.metadata (6.6 kB)\n", + "Requirement already satisfied: s3transfer<0.12.0,>=0.11.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from boto3) (0.11.3)\n", + "Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (2.6.1)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.2)\n", + "Requirement already satisfied: attrs>=17.3.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (25.3.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.5.0)\n", + "Requirement already satisfied: propcache>=0.2.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (0.3.1)\n", + "Requirement already satisfied: yarl<2.0,>=1.17.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.18.0)\n", + "Requirement already satisfied: typing_extensions>=3.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aioitertools<1.0.0,>=0.5.1->aiobotocore) (4.13.2)\n", + "Requirement already satisfied: urllib3!=2.2.0,<3,>=1.25.4 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from botocore<1.37.2,>=1.37.0->aiobotocore) (2.3.0)\n", + "Requirement already satisfied: six>=1.5 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from python-dateutil<3.0.0,>=2.1->aiobotocore) (1.17.0)\n", + "Requirement already satisfied: idna>=2.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.10)\n" + ] + } + ], + "source": [ + "!pip install -U s3fs fsspec aiobotocore boto3" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'2025.3.1'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import xarray as xr\n", + "xr.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import s3fs" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "import os" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'1.3.3.dev40+ge92c0ef'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import virtualizarr as vz\n", + "vz.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'3.0.6'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import zarr\n", + "zarr.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "fs = s3fs.S3FileSystem(**s3fs_kwargs)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "single_simulation_path = bucket_url + 'data/experiments/000/01/'" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-02.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-03.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-04.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-05.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-06.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-07.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-08.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-09.nc',\n", + " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-10.nc']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "single_simulation_paths = fs.ls(single_simulation_path)\n", + "single_simulation_urls = ['s3://' + path for path in single_simulation_paths]\n", + "single_simulation_urls[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "os.environ['LITHOPS_CONFIG_FILE'] = '/Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config'" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# needed to do combine_by_coords, and each has only one value on each dataset\n", + "ENSEMBLE_DIMENSION_COORDS = [\n", + " 'elapsed_time',\n", + " 'polygon_id',\n", + " 'injection_date',\n", + "]\n", + "OTHER_DIMENSION_COORDS = [\n", + " 'time_bounds',\n", + " 'z_t',\n", + " 'z_w',\n", + " 'z_t_150m',\n", + " 'z_w_bot',\n", + " 'z_w_top',\n", + "]\n", + "# so tiny it takes less memory to store their values than to store references to them\n", + "SCALARS = [\n", + " 'T0_Kelvin',\n", + " 'cp_air',\n", + " 'cp_sw',\n", + " 'days_in_norm_year',\n", + " 'fwflux_factor',\n", + " 'grav',\n", + " 'heat_to_PW',\n", + " 'hflux_factor',\n", + " 'latent_heat_fusion',\n", + " 'latent_heat_fusion_mks',\n", + " 'latent_heat_vapor',\n", + " 'mass_to_Sv',\n", + " 'momentum_factor',\n", + " 'nsurface_t',\n", + " 'nsurface_u',\n", + " 'ocn_ref_salinity',\n", + " 'omega',\n", + " 'ppt_to_salt',\n", + " 'radius',\n", + " 'rho_air',\n", + " 'rho_fw',\n", + " 'salinity_factor',\n", + " 'salt_to_Svppt',\n", + " 'salt_to_mmday',\n", + " 'salt_to_ppt',\n", + " 'sea_ice_salinity',\n", + " 'sflux_factor',\n", + " 'sound',\n", + " 'vonkar',\n", + " 'stefan_boltzmann'\n", + "]\n", + "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS+ SCALARS" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Only need to run the following two cells if you haven't deployed this runtime yet" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2025-04-22 14:55:46,760 [INFO] cli.py:107 -- Cleaning all Lithops information\n", + "2025-04-22 14:55:46,760 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-22 14:55:46,905 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-22 14:55:47,619 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-22 14:55:47,960 [INFO] aws_lambda.py:313 -- Deleting function: lithops-worker-r2ie-361dev0-a857601c4a\n", + "2025-04-22 14:55:48,343 [INFO] utils.py:83 -- Deleting objects from bucket 'lithops-us-west-2-r2ie' and prefix 'lithops.runtimes/aws_lambda'\n", + "2025-04-22 14:55:49,823 [INFO] utils.py:93 -- Finished deleting objects, total found: 1\n", + "2025-04-22 14:55:49,824 [INFO] utils.py:83 -- Deleting objects from bucket 'lithops-us-west-2-r2ie' and prefix 'lithops.jobs'\n", + "2025-04-22 14:55:51,272 [INFO] utils.py:93 -- Finished deleting objects, total found: 1\n", + "2025-04-22 14:55:51,277 [INFO] cli.py:141 -- All Lithops temporary data cleaned\n" + ] + } + ], + "source": [ + "!lithops clean -b aws_lambda" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2025-04-22 14:55:51,742 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-22 14:55:51,742 [DEBUG] config.py:101 -- Loading configuration from /Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config\n", + "2025-04-22 14:55:51,750 [DEBUG] config.py:179 -- Loading Serverless backend module: aws_lambda\n", + "2025-04-22 14:55:51,781 [DEBUG] aws_lambda.py:53 -- Creating AWS Lambda client\n", + "2025-04-22 14:55:51,891 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-22 14:55:51,891 [INFO] aws_lambda.py:335 -- Building runtime virtualizarr-runtime from /Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/Dockerfile\n", + "cmd='/usr/local/bin/docker build --platform=linux/amd64 --provenance=false --no-cache -t virtualizarr-runtime -f /Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/Dockerfile . '\n", + "2025-04-22 14:55:51,892 [DEBUG] utils.py:234 -- Creating function handler zip in lithops_lambda.zip\n", + "\u001b[1A\u001b[1B\u001b[0G\u001b[?25l[+] Building 0.0s (0/0) docker:default\n", + "\u001b[?25h\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.0s (0/1) docker:default\n", + "\u001b[?25h\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.2s (1/2) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.3s (2/2) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 0.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.6s\n", + "\u001b[2m => => # Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 0.8s\n", + "\u001b[2m => => # Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] \n", + "\u001b[0m\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.0s\n", + "\u001b[2m => => # Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] \n", + "\u001b[0m\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.1s\n", + "\u001b[2m => => # Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] \n", + "\u001b[0m\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.1s\n", + "\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.3s\n", + "\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.4s\n", + "\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 1.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.6s\n", + "\u001b[2m => => # Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB\n", + "\u001b[0m\u001b[2m => => # ] \n", + "\u001b[0m\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.6s\n", + "\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.8s\n", + "\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 1.9s\n", + "\u001b[2m => => # Get:3 http://deb.debian.org/debian-security bookworm-security InReleas\n", + "\u001b[0m\u001b[2m => => # e [48.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.1s\n", + "\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.1s\n", + "\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.2s\n", + "\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.4s\n", + "\u001b[2m => => # Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 \n", + "\u001b[0m\u001b[2m => => # kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.4s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 2.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.6s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.7s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 2.9s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.0s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.1s\n", + "\u001b[2m => => # Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Package\n", + "\u001b[0m\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.2s\n", + "\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.4s\n", + "\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 3.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.5s\n", + "\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.7s\n", + "\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.7s\n", + "\u001b[2m => => # s [512 B] \n", + "\u001b[0m\u001b[2m => => # Get:6 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 3.9s\n", + "\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Building dependency tree... \n", + "\u001b[0m\u001b[2m => => # Reading state information... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.0s\n", + "\u001b[2m => => # 64 Packages [260 kB] \n", + "\u001b[0m\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Building dependency tree... \n", + "\u001b[0m\u001b[2m => => # Reading state information... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.1s\n", + "\u001b[2m => => # Fetched 9307 kB in 2s (4920 kB/s) \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Reading package lists... \n", + "\u001b[0m\u001b[2m => => # Building dependency tree... \n", + "\u001b[0m\u001b[2m => => # Reading state information... \n", + "\u001b[0m\u001b[2m => => # The following additional packages will be installed: \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.3s\n", + "\u001b[2m => => # | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-mod\n", + "\u001b[0m\u001b[2m => => # ules-otp \n", + "\u001b[0m\u001b[2m => => # libsasl2-modules-sql libstdc++-12-doc make-doc man-browser keychain \n", + "\u001b[0m\u001b[2m => => # libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc \n", + "\u001b[0m\u001b[2m => => # libterm-readline-gnu-perl | libterm-readline-perl-perl \n", + "\u001b[0m\u001b[2m => => # libtap-harness-archive-perl zip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.5s\n", + "\u001b[2m => => # | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-mod\n", + "\u001b[0m\u001b[2m => => # ules-otp \n", + "\u001b[0m\u001b[2m => => # libsasl2-modules-sql libstdc++-12-doc make-doc man-browser keychain \n", + "\u001b[0m\u001b[2m => => # libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc \n", + "\u001b[0m\u001b[2m => => # libterm-readline-gnu-perl | libterm-readline-perl-perl \n", + "\u001b[0m\u001b[2m => => # libtap-harness-archive-perl zip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.6s\n", + "\u001b[2m => => # | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-mod\n", + "\u001b[0m\u001b[2m => => # ules-otp \n", + "\u001b[0m\u001b[2m => => # libsasl2-modules-sql libstdc++-12-doc make-doc man-browser keychain \n", + "\u001b[0m\u001b[2m => => # libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc \n", + "\u001b[0m\u001b[2m => => # libterm-readline-gnu-perl | libterm-readline-perl-perl \n", + "\u001b[0m\u001b[2m => => # libtap-harness-archive-perl zip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 4.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.6s\n", + "\u001b[2m => => # libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc \n", + "\u001b[0m\u001b[2m => => # libterm-readline-gnu-perl | libterm-readline-perl-perl \n", + "\u001b[0m\u001b[2m => => # libtap-harness-archive-perl zip \n", + "\u001b[0m\u001b[2m => => # The following NEW packages will be installed: \n", + "\u001b[0m\u001b[2m => => # binutils binutils-common binutils-x86-64-linux-gnu cmake cmake-data \n", + "\u001b[0m\u001b[2m => => # cpp \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.7s\n", + "\u001b[2m => => # perl-base \n", + "\u001b[0m\u001b[2m => => # 1 upgraded, 112 newly installed, 0 to remove and 0 not upgraded. \n", + "\u001b[0m\u001b[2m => => # Need to get 124 MB of archives. \n", + "\u001b[0m\u001b[2m => => # After this operation, 511 MB of additional disk space will be used. \n", + "\u001b[0m\u001b[2m => => # Get:1 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 perl-base amd64 5.36.0-7+deb12u2 [1609 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.8s\n", + "\u001b[2m => => # Get:3 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4\n", + "\u001b[0m\u001b[2m => => # amd64 1.23-3 [48.2 kB] \n", + "\u001b[0m\u001b[2m => => # Get:4 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 libperl5.36 amd64 5.36.0-7+deb12u2 [4207 kB] \n", + "\u001b[0m\u001b[2m => => # Get:5 http://deb.debian.org/debian-security bookworm-security/main amd\n", + "\u001b[0m\u001b[2m => => # 64 perl amd64 5.36.0-7+deb12u2 [239 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 4.9s\n", + "\u001b[2m => => # Get:20 http://deb.debian.org/debian bookworm/main amd64 libjansson4 am\n", + "\u001b[0m\u001b[2m => => # d64 2.14-2 [40.8 kB] \n", + "\u001b[0m\u001b[2m => => # Get:21 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-6\n", + "\u001b[0m\u001b[2m => => # 4-linux-gnu amd64 2.40-2 [2246 kB] \n", + "\u001b[0m\u001b[2m => => # Get:22 http://deb.debian.org/debian bookworm/main amd64 binutils amd64\n", + "\u001b[0m\u001b[2m => => # 2.40-2 [65.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.1s\n", + "\u001b[2m => => # Get:21 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-6\n", + "\u001b[0m\u001b[2m => => # 4-linux-gnu amd64 2.40-2 [2246 kB] \n", + "\u001b[0m\u001b[2m => => # Get:22 http://deb.debian.org/debian bookworm/main amd64 binutils amd64\n", + "\u001b[0m\u001b[2m => => # 2.40-2 [65.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:23 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64\n", + "\u001b[0m\u001b[2m => => # 72.1-3 [9376 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.2s\n", + "\u001b[2m => => # Get:22 http://deb.debian.org/debian bookworm/main amd64 binutils amd64\n", + "\u001b[0m\u001b[2m => => # 2.40-2 [65.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:23 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64\n", + "\u001b[0m\u001b[2m => => # 72.1-3 [9376 kB] \n", + "\u001b[0m\u001b[2m => => # Get:24 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 \n", + "\u001b[0m\u001b[2m => => # 2.9.14+dfsg-1.3~deb12u1 [687 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.3s\n", + "\u001b[2m => => # Get:38 http://deb.debian.org/debian bookworm/main amd64 libuv1 amd64 1\n", + "\u001b[0m\u001b[2m => => # .44.2-1+deb12u1 [136 kB] \n", + "\u001b[0m\u001b[2m => => # Get:39 http://deb.debian.org/debian bookworm/main amd64 cmake-data all\n", + "\u001b[0m\u001b[2m => => # 3.25.1-1 [2026 kB] \n", + "\u001b[0m\u001b[2m => => # Get:40 http://deb.debian.org/debian bookworm/main amd64 cmake amd64 3.\n", + "\u001b[0m\u001b[2m => => # 25.1-1 [8692 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.5s\n", + "\u001b[2m => => # Get:38 http://deb.debian.org/debian bookworm/main amd64 libuv1 amd64 1\n", + "\u001b[0m\u001b[2m => => # .44.2-1+deb12u1 [136 kB] \n", + "\u001b[0m\u001b[2m => => # Get:39 http://deb.debian.org/debian bookworm/main amd64 cmake-data all\n", + "\u001b[0m\u001b[2m => => # 3.25.1-1 [2026 kB] \n", + "\u001b[0m\u001b[2m => => # Get:40 http://deb.debian.org/debian bookworm/main amd64 cmake amd64 3.\n", + "\u001b[0m\u001b[2m => => # 25.1-1 [8692 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 5.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.6s\n", + "\u001b[2m => => # Get:39 http://deb.debian.org/debian bookworm/main amd64 cmake-data all\n", + "\u001b[0m\u001b[2m => => # 3.25.1-1 [2026 kB] \n", + "\u001b[0m\u001b[2m => => # Get:40 http://deb.debian.org/debian bookworm/main amd64 cmake amd64 3.\n", + "\u001b[0m\u001b[2m => => # 25.1-1 [8692 kB] \n", + "\u001b[0m\u001b[2m => => # Get:41 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64\n", + "\u001b[0m\u001b[2m => => # 0.25-1.1 [683 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.8s\n", + "\u001b[2m => => # Get:42 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64\n", + "\u001b[0m\u001b[2m => => # 4.2.0-1 [701 kB] \n", + "\u001b[0m\u001b[2m => => # Get:43 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 \n", + "\u001b[0m\u001b[2m => => # 1.3.1-1 [51.5 kB] \n", + "\u001b[0m\u001b[2m => => # Get:44 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [9764 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.8s\n", + "\u001b[2m => => # Get:43 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 \n", + "\u001b[0m\u001b[2m => => # 1.3.1-1 [51.5 kB] \n", + "\u001b[0m\u001b[2m => => # Get:44 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [9764 kB] \n", + "\u001b[0m\u001b[2m => => # Get:45 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12\n", + "\u001b[0m\u001b[2m => => # .2.0-3 [6836 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 5.9s\n", + "\u001b[2m => => # Get:55 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd6\n", + "\u001b[0m\u001b[2m => => # 4 12.2.0-14 [883 kB] \n", + "\u001b[0m\u001b[2m => => # Get:56 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 a\n", + "\u001b[0m\u001b[2m => => # md64 12.2.0-14 [144 kB] \n", + "\u001b[0m\u001b[2m => => # Get:57 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev \n", + "\u001b[0m\u001b[2m => => # amd64 12.2.0-14 [2437 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.1s\n", + "\u001b[2m => => # Get:56 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 a\n", + "\u001b[0m\u001b[2m => => # md64 12.2.0-14 [144 kB] \n", + "\u001b[0m\u001b[2m => => # Get:57 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev \n", + "\u001b[0m\u001b[2m => => # amd64 12.2.0-14 [2437 kB] \n", + "\u001b[0m\u001b[2m => => # Get:58 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [19.3 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.2s\n", + "\u001b[2m => => # Get:57 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev \n", + "\u001b[0m\u001b[2m => => # amd64 12.2.0-14 [2437 kB] \n", + "\u001b[0m\u001b[2m => => # Get:58 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [19.3 MB] \n", + "\u001b[0m\u001b[2m => => # Get:59 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12\n", + "\u001b[0m\u001b[2m => => # .2.0-3 [5216 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.3s\n", + "\u001b[2m => => # Get:65 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto a\n", + "\u001b[0m\u001b[2m => => # md64 1.4.3-1 [63.3 kB] \n", + "\u001b[0m\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 6.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.5s\n", + "\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.7s\n", + "\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 6.8s\n", + "\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.0s\n", + "\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.1s\n", + "\u001b[2m => => # Get:66 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd6\n", + "\u001b[0m\u001b[2m => => # 4 2.36-9+deb12u10 [1903 kB] \n", + "\u001b[0m\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.1s\n", + "\u001b[2m => => # Get:67 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-d\n", + "\u001b[0m\u001b[2m => => # ev amd64 12.2.0-14 [2046 kB] \n", + "\u001b[0m\u001b[2m => => # Get:68 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 1\n", + "\u001b[0m\u001b[2m => => # 2.2.0-14 [10.7 MB] \n", + "\u001b[0m\u001b[2m => => # Get:69 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12\n", + "\u001b[0m\u001b[2m => => # .2.0-3 [1356 B] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.3s\n", + "\u001b[2m => => # Get:71 http://deb.debian.org/debian bookworm/main amd64 liberror-perl \n", + "\u001b[0m\u001b[2m => => # all 0.17029-2 [29.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:72 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:\n", + "\u001b[0m\u001b[2m => => # 2.39.5-0+deb12u2 [2053 kB] \n", + "\u001b[0m\u001b[2m => => # Get:73 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.\n", + "\u001b[0m\u001b[2m => => # 39.5-0+deb12u2 [7260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.4s\n", + "\u001b[2m => => # Get:71 http://deb.debian.org/debian bookworm/main amd64 liberror-perl \n", + "\u001b[0m\u001b[2m => => # all 0.17029-2 [29.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:72 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:\n", + "\u001b[0m\u001b[2m => => # 2.39.5-0+deb12u2 [2053 kB] \n", + "\u001b[0m\u001b[2m => => # Get:73 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.\n", + "\u001b[0m\u001b[2m => => # 39.5-0+deb12u2 [7260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 7.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.6s\n", + "\u001b[2m => => # Get:71 http://deb.debian.org/debian bookworm/main amd64 liberror-perl \n", + "\u001b[0m\u001b[2m => => # all 0.17029-2 [29.0 kB] \n", + "\u001b[0m\u001b[2m => => # Get:72 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:\n", + "\u001b[0m\u001b[2m => => # 2.39.5-0+deb12u2 [2053 kB] \n", + "\u001b[0m\u001b[2m => => # Get:73 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.\n", + "\u001b[0m\u001b[2m => => # 39.5-0+deb12u2 [7260 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.6s\n", + "\u001b[2m => => # Get:72 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:\n", + "\u001b[0m\u001b[2m => => # 2.39.5-0+deb12u2 [2053 kB] \n", + "\u001b[0m\u001b[2m => => # Get:73 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.\n", + "\u001b[0m\u001b[2m => => # 39.5-0+deb12u2 [7260 kB] \n", + "\u001b[0m\u001b[2m => => # Get:74 http://deb.debian.org/debian bookworm/main amd64 libabsl2022062\n", + "\u001b[0m\u001b[2m => => # 3 amd64 20220623.1-1 [391 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.8s\n", + "\u001b[2m => => # Get:82 http://deb.debian.org/debian bookworm/main amd64 libavif15 amd6\n", + "\u001b[0m\u001b[2m => => # 4 0.11.1-1 [93.8 kB] \n", + "\u001b[0m\u001b[2m => => # Get:83 http://deb.debian.org/debian bookworm/main amd64 libpng16-16 am\n", + "\u001b[0m\u001b[2m => => # d64 1.6.39-2 [276 kB] \n", + "\u001b[0m\u001b[2m => => # Get:84 http://deb.debian.org/debian-security bookworm-security/main am\n", + "\u001b[0m\u001b[2m => => # d64 libfreetype6 amd64 2.12.1+dfsg-5+deb12u4 [398 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 7.9s\n", + "\u001b[2m => => # Get:105 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd6\n", + "\u001b[0m\u001b[2m => => # 4 2:1.3.4-1+b1 [52.9 kB] \n", + "\u001b[0m\u001b[2m => => # Get:106 http://deb.debian.org/debian bookworm/main amd64 libxmuu1 amd6\n", + "\u001b[0m\u001b[2m => => # 4 2:1.1.3-3 [23.9 kB] \n", + "\u001b[0m\u001b[2m => => # Get:107 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.\n", + "\u001b[0m\u001b[2m => => # 3-4.1 [396 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.1s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.2s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.4s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 8.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.5s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.7s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.8s\n", + "\u001b[2m => => # Get:111 http://deb.debian.org/debian bookworm/main amd64 publicsuffix \n", + "\u001b[0m\u001b[2m => => # all 20230209.2326-1 [126 kB] \n", + "\u001b[0m\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 8.9s\n", + "\u001b[2m => => # Get:112 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6\n", + "\u001b[0m\u001b[2m => => # .0-28 [166 kB] \n", + "\u001b[0m\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.1s\n", + "\u001b[2m => => # Get:113 http://deb.debian.org/debian bookworm/main amd64 xauth amd64 1\n", + "\u001b[0m\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.3s\n", + "\u001b[2m => => # :1.1.2-1 [36.0 kB] \n", + "\u001b[0m\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.3s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.4s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 9.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.6s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.7s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ ma 9.9s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.0s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.2s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.3s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 10.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.5s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.6s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.8s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 10.9s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.1s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.2s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.4s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 11.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.5s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.7s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 11.8s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.0s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.1s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.3s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.4s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 12.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.6s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.7s\n", + "\u001b[2m => => # debconf: delaying package configuration, since apt-utils is not instal\n", + "\u001b[0m\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.8s\n", + "\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 12.9s\n", + "\u001b[2m => => # led \n", + "\u001b[0m\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.0s\n", + "\u001b[2m => => # Fetched 124 MB in 3s (38.2 MB/s) \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6688 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../perl-base_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-base (5.36.0-7+deb12u2) over (5.36.0-7+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.2s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.3s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 13.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.5s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.6s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.8s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 13.9s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.1s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.2s\n", + "\u001b[2m => => # Setting up perl-base (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.3s\n", + "\u001b[2m => => # Selecting previously unselected package perl-modules-5.36. \n", + "\u001b[0m\u001b[2m => => # (Reading database ... 6689 files and directories currently installed.)\n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../000-perl-modules-5.36_5.36.0-7+deb12u2_all.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.4s\n", + "\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 14.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.7s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 14.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.0s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.3s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 15.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.8s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 15.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.4s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgdbm-compat4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 16.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.6s\n", + "\u001b[2m => => # Preparing to unpack .../001-libgdbm-compat4_1.23-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.8s\n", + "\u001b[2m => => # Selecting previously unselected package libperl5.36:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../003-perl_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 16.8s\n", + "\u001b[2m => => # Preparing to unpack .../002-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../003-perl_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package less. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.0s\n", + "\u001b[2m => => # Preparing to unpack .../003-perl_5.36.0-7+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking perl (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package less. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../004-less_590-2.1~deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking less (590-2.1~deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libproc2-0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.1s\n", + "\u001b[2m => => # Preparing to unpack .../004-less_590-2.1~deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking less (590-2.1~deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libproc2-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../005-libproc2-0_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libproc2-0:amd64 (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.3s\n", + "\u001b[2m => => # Unpacking less (590-2.1~deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libproc2-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../005-libproc2-0_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libproc2-0:amd64 (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.3s\n", + "\u001b[2m => => # Selecting previously unselected package libproc2-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../005-libproc2-0_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libproc2-0:amd64 (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.4s\n", + "\u001b[2m => => # Selecting previously unselected package libproc2-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../005-libproc2-0_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libproc2-0:amd64 (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.5s\n", + "\u001b[2m => => # Preparing to unpack .../005-libproc2-0_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libproc2-0:amd64 (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 17.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.6s\n", + "\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../007-manpages_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages (6.03-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.8s\n", + "\u001b[2m => => # Selecting previously unselected package procps. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../007-manpages_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages (6.03-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.8s\n", + "\u001b[2m => => # Preparing to unpack .../006-procps_2%3a4.0.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../007-manpages_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbsd0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.9s\n", + "\u001b[2m => => # Selecting previously unselected package manpages. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../007-manpages_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbsd0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../008-libbsd0_0.11.7-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbsd0:amd64 (0.11.7-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 17.9s\n", + "\u001b[2m => => # Preparing to unpack .../007-manpages_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbsd0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../008-libbsd0_0.11.7-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbsd0:amd64 (0.11.7-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libedit2:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.1s\n", + "\u001b[2m => => # Selecting previously unselected package libbsd0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../008-libbsd0_0.11.7-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbsd0:amd64 (0.11.7-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libedit2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../009-libedit2_3.1-20221030-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.1s\n", + "\u001b[2m => => # Preparing to unpack .../008-libbsd0_0.11.7-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbsd0:amd64 (0.11.7-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libedit2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../009-libedit2_3.1-20221030-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcbor0.8:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.3s\n", + "\u001b[2m => => # Selecting previously unselected package libedit2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../009-libedit2_3.1-20221030-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcbor0.8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../010-libcbor0.8_0.8.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.3s\n", + "\u001b[2m => => # Preparing to unpack .../009-libedit2_3.1-20221030-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcbor0.8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../010-libcbor0.8_0.8.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfido2-1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.4s\n", + "\u001b[2m => => # Selecting previously unselected package libcbor0.8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../010-libcbor0.8_0.8.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfido2-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../011-libfido2-1_1.12.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfido2-1:amd64 (1.12.0-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.4s\n", + "\u001b[2m => => # Preparing to unpack .../010-libcbor0.8_0.8.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfido2-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../011-libfido2-1_1.12.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfido2-1:amd64 (1.12.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package openssh-client. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 18.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.5s\n", + "\u001b[2m => => # Preparing to unpack .../011-libfido2-1_1.12.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfido2-1:amd64 (1.12.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package openssh-client. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../012-openssh-client_1%3a9.2p1-2+deb12u5_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.7s\n", + "\u001b[2m => => # Preparing to unpack .../011-libfido2-1_1.12.0-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfido2-1:amd64 (1.12.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package openssh-client. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../012-openssh-client_1%3a9.2p1-2+deb12u5_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.8s\n", + "\u001b[2m => => # Unpacking libfido2-1:amd64 (1.12.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package openssh-client. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../012-openssh-client_1%3a9.2p1-2+deb12u5_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-common:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 18.9s\n", + "\u001b[2m => => # Preparing to unpack .../012-openssh-client_1%3a9.2p1-2+deb12u5_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-common:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../013-binutils-common_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-common:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.1s\n", + "\u001b[2m => => # Preparing to unpack .../012-openssh-client_1%3a9.2p1-2+deb12u5_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-common:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../013-binutils-common_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-common:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.1s\n", + "\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-common:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../013-binutils-common_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-common:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbinutils:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.2s\n", + "\u001b[2m => => # Preparing to unpack .../013-binutils-common_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-common:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbinutils:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../014-libbinutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbinutils:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libctf-nobfd0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.3s\n", + "\u001b[2m => => # Preparing to unpack .../014-libbinutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbinutils:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libctf-nobfd0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../015-libctf-nobfd0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libctf-nobfd0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libctf0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.4s\n", + "\u001b[2m => => # Preparing to unpack .../015-libctf-nobfd0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libctf-nobfd0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libctf0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../016-libctf0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libctf0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgprofng0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 19.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.6s\n", + "\u001b[2m => => # Selecting previously unselected package libctf0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../016-libctf0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libctf0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgprofng0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../017-libgprofng0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgprofng0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.7s\n", + "\u001b[2m => => # Preparing to unpack .../016-libctf0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libctf0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgprofng0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../017-libgprofng0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgprofng0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjansson4:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 19.8s\n", + "\u001b[2m => => # Preparing to unpack .../017-libgprofng0_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgprofng0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjansson4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../018-libjansson4_2.14-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjansson4:amd64 (2.14-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-x86-64-linux-gnu. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.0s\n", + "\u001b[2m => => # Preparing to unpack .../018-libjansson4_2.14-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjansson4:amd64 (2.14-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-x86-64-linux-gnu. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../019-binutils-x86-64-linux-gnu_2.40-2_amd64.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.1s\n", + "\u001b[2m => => # Preparing to unpack .../018-libjansson4_2.14-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjansson4:amd64 (2.14-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-x86-64-linux-gnu. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../019-binutils-x86-64-linux-gnu_2.40-2_amd64.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.3s\n", + "\u001b[2m => => # Preparing to unpack .../018-libjansson4_2.14-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjansson4:amd64 (2.14-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-x86-64-linux-gnu. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../019-binutils-x86-64-linux-gnu_2.40-2_amd64.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.3s\n", + "\u001b[2m => => # Unpacking libjansson4:amd64 (2.14-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils-x86-64-linux-gnu. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../019-binutils-x86-64-linux-gnu_2.40-2_amd64.deb\n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 20.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.5s\n", + "\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.6s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.8s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 20.9s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.1s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.2s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.4s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 21.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.5s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.7s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 21.8s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.0s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.1s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.3s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.4s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 22.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.6s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.7s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 22.9s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.0s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.2s\n", + "\u001b[2m => => # Selecting previously unselected package binutils. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.3s\n", + "\u001b[2m => => # Preparing to unpack .../020-binutils_2.40-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libicu72:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.4s\n", + "\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 23.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.6s\n", + "\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.7s\n", + "\u001b[2m => => # Preparing to unpack .../021-libicu72_72.1-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 23.8s\n", + "\u001b[2m => => # Unpacking libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.0s\n", + "\u001b[2m => => # Selecting previously unselected package libxml2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.1s\n", + "\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.2s\n", + "\u001b[2m => => # Preparing to unpack .../022-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.3s\n", + "\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbrotli1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.5s\n", + "\u001b[2m => => # Selecting previously unselected package libarchive13:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbrotli1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../024-libbrotli1_1.0.9-2+b6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 24.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.6s\n", + "\u001b[2m => => # Preparing to unpack .../023-libarchive13_3.6.2-1+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libbrotli1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../024-libbrotli1_1.0.9-2+b6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules-db:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.7s\n", + "\u001b[2m => => # Preparing to unpack .../024-libbrotli1_1.0.9-2+b6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules-db:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../025-libsasl2-modules-db_2.1.28+dfsg-10_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.8s\n", + "\u001b[2m => => # Unpacking libbrotli1:amd64 (1.0.9-2+b6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules-db:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../025-libsasl2-modules-db_2.1.28+dfsg-10_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-2:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 24.9s\n", + "\u001b[2m => => # Preparing to unpack .../025-libsasl2-modules-db_2.1.28+dfsg-10_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../026-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.0s\n", + "\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../026-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-2.5-0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.1s\n", + "\u001b[2m => => # Selecting previously unselected package libsasl2-2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../026-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-2.5-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../027-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.2s\n", + "\u001b[2m => => # Preparing to unpack .../026-libsasl2-2_2.1.28+dfsg-10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-2:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-2.5-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../027-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnghttp2-14:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.4s\n", + "\u001b[2m => => # Preparing to unpack .../027-libldap-2.5-0_2.5.13+dfsg-5_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnghttp2-14:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../028-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb .\n", + "\u001b[0m\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.4s\n", + "\u001b[2m => => # Unpacking libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnghttp2-14:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../028-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb .\n", + "\u001b[0m\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpsl5:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.6s\n", + "\u001b[2m => => # Preparing to unpack .../028-libnghttp2-14_1.52.0-1+deb12u2_amd64.deb .\n", + "\u001b[0m\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpsl5:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../029-libpsl5_0.21.2-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 25.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.6s\n", + "\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libnghttp2-14:amd64 (1.52.0-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpsl5:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../029-libpsl5_0.21.2-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librtmp1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.8s\n", + "\u001b[2m => => # Preparing to unpack .../029-libpsl5_0.21.2-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librtmp1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../030-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_am\n", + "\u001b[0m\u001b[2m => => # d64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 25.8s\n", + "\u001b[2m => => # Unpacking libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librtmp1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../030-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_am\n", + "\u001b[0m\u001b[2m => => # d64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libssh2-1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.0s\n", + "\u001b[2m => => # Preparing to unpack .../030-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_am\n", + "\u001b[0m\u001b[2m => => # d64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libssh2-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../031-libssh2-1_1.10.0-3+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.0s\n", + "\u001b[2m => => # d64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libssh2-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../031-libssh2-1_1.10.0-3+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl4:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.2s\n", + "\u001b[2m => => # Selecting previously unselected package libssh2-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../031-libssh2-1_1.10.0-3+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../032-libcurl4_7.88.1-10+deb12u12_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl4:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.2s\n", + "\u001b[2m => => # Preparing to unpack .../031-libssh2-1_1.10.0-3+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libssh2-1:amd64 (1.10.0-3+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../032-libcurl4_7.88.1-10+deb12u12_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl4:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libexpat1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.4s\n", + "\u001b[2m => => # Selecting previously unselected package libcurl4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../032-libcurl4_7.88.1-10+deb12u12_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl4:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libexpat1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../033-libexpat1_2.5.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 26.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.5s\n", + "\u001b[2m => => # Preparing to unpack .../032-libcurl4_7.88.1-10+deb12u12_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl4:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libexpat1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../033-libexpat1_2.5.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjsoncpp25:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.7s\n", + "\u001b[2m => => # Selecting previously unselected package libexpat1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../033-libexpat1_2.5.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjsoncpp25:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../034-libjsoncpp25_1.9.5-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjsoncpp25:amd64 (1.9.5-4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.7s\n", + "\u001b[2m => => # Preparing to unpack .../033-libexpat1_2.5.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libexpat1:amd64 (2.5.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjsoncpp25:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../034-libjsoncpp25_1.9.5-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjsoncpp25:amd64 (1.9.5-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librhash0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 26.9s\n", + "\u001b[2m => => # Selecting previously unselected package libjsoncpp25:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../034-libjsoncpp25_1.9.5-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjsoncpp25:amd64 (1.9.5-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librhash0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../035-librhash0_1.4.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.0s\n", + "\u001b[2m => => # Preparing to unpack .../034-libjsoncpp25_1.9.5-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjsoncpp25:amd64 (1.9.5-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librhash0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../035-librhash0_1.4.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.1s\n", + "\u001b[2m => => # Selecting previously unselected package librhash0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../035-librhash0_1.4.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.3s\n", + "\u001b[2m => => # Selecting previously unselected package librhash0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../035-librhash0_1.4.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.3s\n", + "\u001b[2m => => # Preparing to unpack .../035-librhash0_1.4.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 27.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.5s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.7s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 27.8s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.0s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.1s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.3s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.4s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 28.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.6s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.7s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 28.9s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.0s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.2s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.3s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 29.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.5s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.6s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.8s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 29.9s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.1s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.2s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.4s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 30.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.5s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.7s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 30.8s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.0s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.1s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.3s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.4s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 31.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.6s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.7s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 31.9s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.0s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.2s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.3s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 32.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.5s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.6s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.8s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 32.9s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.1s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.2s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.4s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.5s\n", + "\u001b[2m => => # Selecting previously unselected package libuv1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 33.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.6s\n", + "\u001b[2m => => # Preparing to unpack .../036-libuv1_1.44.2-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libuv1:amd64 (1.44.2-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.8s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 33.9s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.1s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.2s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.4s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 34.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.5s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.7s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 34.8s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.0s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.1s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.3s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.4s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 35.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.6s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.7s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 35.9s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.0s\n", + "\u001b[2m => => # Selecting previously unselected package cmake-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.2s\n", + "\u001b[2m => => # Preparing to unpack .../037-cmake-data_3.25.1-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake-data (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libisl23:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.3s\n", + "\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libisl23:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../039-libisl23_0.25-1.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.5s\n", + "\u001b[2m => => # Selecting previously unselected package cmake. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libisl23:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../039-libisl23_0.25-1.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 36.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.5s\n", + "\u001b[2m => => # Preparing to unpack .../038-cmake_3.25.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libisl23:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../039-libisl23_0.25-1.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libmpfr6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.7s\n", + "\u001b[2m => => # Selecting previously unselected package libisl23:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../039-libisl23_0.25-1.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libmpfr6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../040-libmpfr6_4.2.0-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpfr6:amd64 (4.2.0-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.7s\n", + "\u001b[2m => => # Preparing to unpack .../039-libisl23_0.25-1.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libmpfr6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../040-libmpfr6_4.2.0-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpfr6:amd64 (4.2.0-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 36.9s\n", + "\u001b[2m => => # Preparing to unpack .../040-libmpfr6_4.2.0-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpfr6:amd64 (4.2.0-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.0s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.2s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.3s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 37.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.5s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.6s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.8s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 37.9s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.1s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.2s\n", + "\u001b[2m => => # Selecting previously unselected package libmpc3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.2s\n", + "\u001b[2m => => # Preparing to unpack .../041-libmpc3_1.3.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.3s\n", + "\u001b[2m => => # Preparing to unpack .../042-cpp-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package cpp. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../043-cpp_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.5s\n", + "\u001b[2m => => # Selecting previously unselected package cpp. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../043-cpp_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 38.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.6s\n", + "\u001b[2m => => # Preparing to unpack .../043-cpp_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.7s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 38.9s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.0s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.2s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.3s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.5s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 39.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.6s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.8s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 39.9s\n", + "\u001b[2m => => # Unpacking cpp (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.0s\n", + "\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.1s\n", + "\u001b[2m => => # Selecting previously unselected package fonts-dejavu-core. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.2s\n", + "\u001b[2m => => # Preparing to unpack .../044-fonts-dejavu-core_2.37-6_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package fontconfig-config. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcc1-0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.3s\n", + "\u001b[2m => => # Preparing to unpack .../045-fontconfig-config_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcc1-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../046-libcc1-0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcc1-0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgomp1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.4s\n", + "\u001b[2m => => # Preparing to unpack .../046-libcc1-0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcc1-0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgomp1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../047-libgomp1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgomp1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libitm1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 40.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgomp1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../047-libgomp1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgomp1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libitm1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../048-libitm1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libitm1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.7s\n", + "\u001b[2m => => # Preparing to unpack .../047-libgomp1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgomp1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libitm1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../048-libitm1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libitm1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libatomic1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.8s\n", + "\u001b[2m => => # Preparing to unpack .../048-libitm1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libitm1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libatomic1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../049-libatomic1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libatomic1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libasan8:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 40.9s\n", + "\u001b[2m => => # Selecting previously unselected package libatomic1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../049-libatomic1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libatomic1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libasan8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../050-libasan8_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.1s\n", + "\u001b[2m => => # Selecting previously unselected package libatomic1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../049-libatomic1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libatomic1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libasan8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../050-libasan8_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.1s\n", + "\u001b[2m => => # Preparing to unpack .../049-libatomic1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libatomic1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libasan8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../050-libasan8_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblsan0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.3s\n", + "\u001b[2m => => # Selecting previously unselected package libasan8:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../050-libasan8_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblsan0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../051-liblsan0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblsan0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.3s\n", + "\u001b[2m => => # Preparing to unpack .../050-libasan8_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblsan0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../051-liblsan0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblsan0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtsan2:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.4s\n", + "\u001b[2m => => # Selecting previously unselected package liblsan0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../051-liblsan0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblsan0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtsan2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../052-libtsan2_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtsan2:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 41.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.6s\n", + "\u001b[2m => => # Preparing to unpack .../051-liblsan0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblsan0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtsan2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../052-libtsan2_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtsan2:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libubsan1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.7s\n", + "\u001b[2m => => # Selecting previously unselected package libtsan2:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../052-libtsan2_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtsan2:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libubsan1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../053-libubsan1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libubsan1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.7s\n", + "\u001b[2m => => # Preparing to unpack .../052-libtsan2_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtsan2:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libubsan1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../053-libubsan1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libubsan1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.9s\n", + "\u001b[2m => => # Selecting previously unselected package libubsan1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../053-libubsan1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libubsan1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 41.9s\n", + "\u001b[2m => => # Preparing to unpack .../053-libubsan1_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libubsan1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.1s\n", + "\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.2s\n", + "\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.4s\n", + "\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 42.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.5s\n", + "\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.7s\n", + "\u001b[2m => => # Selecting previously unselected package libquadmath0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.8s\n", + "\u001b[2m => => # Preparing to unpack .../054-libquadmath0_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libquadmath0:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 42.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.4s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 43.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.7s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 43.8s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.0s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.3s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.4s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 44.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.7s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 44.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.0s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.3s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 45.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.8s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 45.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.4s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 46.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.7s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 46.8s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.0s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.3s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.4s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 47.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.7s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 47.9s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.0s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.2s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.3s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 48.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.5s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.6s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.8s\n", + "\u001b[2m => => # Selecting previously unselected package libgcc-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 48.8s\n", + "\u001b[2m => => # Preparing to unpack .../055-libgcc-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgcc-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.0s\n", + "\u001b[2m => => # Selecting previously unselected package gcc-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../057-gcc_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.0s\n", + "\u001b[2m => => # Preparing to unpack .../056-gcc-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package gcc. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../057-gcc_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.1s\n", + "\u001b[2m => => # Selecting previously unselected package gcc. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../057-gcc_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.1s\n", + "\u001b[2m => => # Preparing to unpack .../057-gcc_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.3s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.5s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 49.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.6s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.8s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 49.9s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.1s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.2s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.4s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 50.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.5s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.7s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 50.8s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.0s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.1s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.3s\n", + "\u001b[2m => => # Selecting previously unselected package libc-dev-bin. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.3s\n", + "\u001b[2m => => # Preparing to unpack .../058-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.4s\n", + "\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 51.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.6s\n", + "\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.7s\n", + "\u001b[2m => => # Selecting previously unselected package linux-libc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 51.8s\n", + "\u001b[2m => => # Preparing to unpack .../059-linux-libc-dev_6.1.133-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.0s\n", + "\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.2s\n", + "\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.3s\n", + "\u001b[2m => => # Selecting previously unselected package libcrypt-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.4s\n", + "\u001b[2m => => # Preparing to unpack .../060-libcrypt-dev_1%3a4.4.33-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 52.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.6s\n", + "\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.7s\n", + "\u001b[2m => => # Selecting previously unselected package libtirpc-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 52.8s\n", + "\u001b[2m => => # Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.0s\n", + "\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.1s\n", + "\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.3s\n", + "\u001b[2m => => # Selecting previously unselected package libnsl-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.3s\n", + "\u001b[2m => => # Preparing to unpack .../062-libnsl-dev_1.3.0-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 53.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.5s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.6s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.8s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 53.9s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.1s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.2s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.4s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 54.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.5s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.7s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 54.8s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.0s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.1s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.3s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.4s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 55.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.6s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.7s\n", + "\u001b[2m => => # Selecting previously unselected package rpcsvc-proto. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.9s\n", + "\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 55.9s\n", + "\u001b[2m => => # Preparing to unpack .../063-rpcsvc-proto_1.4.3-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking rpcsvc-proto (1.4.3-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.1s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.2s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.4s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 56.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.5s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.7s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 56.8s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.0s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.1s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.3s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.4s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 57.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.6s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.7s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 57.9s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.0s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.2s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.3s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.5s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 58.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.6s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.8s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 58.9s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.1s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.2s\n", + "\u001b[2m => => # Selecting previously unselected package libc6-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.3s\n", + "\u001b[2m => => # Preparing to unpack .../064-libc6-dev_2.36-9+deb12u10_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.5s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 59.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.6s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.8s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 59.9s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.1s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.2s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.4s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 60.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.5s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.7s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 60.8s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.0s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.1s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.3s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.4s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 61.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.6s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.7s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 61.9s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.0s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.2s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.3s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.5s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 62.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.6s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.8s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 62.9s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.1s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.2s\n", + "\u001b[2m => => # Selecting previously unselected package libstdc++-12-dev:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.4s\n", + "\u001b[2m => => # Preparing to unpack .../065-libstdc++-12-dev_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.5s\n", + "\u001b[2m => => # Selecting previously unselected package g++-12. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../067-g++_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 63.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.6s\n", + "\u001b[2m => => # Preparing to unpack .../066-g++-12_12.2.0-14_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package g++. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../067-g++_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl3-gnutls:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.7s\n", + "\u001b[2m => => # Preparing to unpack .../067-g++_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl3-gnutls:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../068-libcurl3-gnutls_7.88.1-10+deb12u12_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.9s\n", + "\u001b[2m => => # Preparing to unpack .../067-g++_4%3a12.2.0-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl3-gnutls:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../068-libcurl3-gnutls_7.88.1-10+deb12u12_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 63.9s\n", + "\u001b[2m => => # Unpacking g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libcurl3-gnutls:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../068-libcurl3-gnutls_7.88.1-10+deb12u12_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.1s\n", + "\u001b[2m => => # Preparing to unpack .../068-libcurl3-gnutls_7.88.1-10+deb12u12_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.2s\n", + "\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.4s\n", + "\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 64.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.5s\n", + "\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.7s\n", + "\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 64.8s\n", + "\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.0s\n", + "\u001b[2m => => # Selecting previously unselected package liberror-perl. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.0s\n", + "\u001b[2m => => # Preparing to unpack .../069-liberror-perl_0.17029-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.1s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.3s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.4s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 65.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.6s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.7s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 65.9s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.0s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.2s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.3s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.5s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 66.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.6s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.8s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 66.9s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.1s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.2s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.4s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 67.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.5s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.7s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 67.9s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.0s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.1s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.3s\n", + "\u001b[2m => => # Selecting previously unselected package git-man. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.3s\n", + "\u001b[2m => => # Preparing to unpack .../070-git-man_1%3a2.39.5-0+deb12u2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.5s\n", + "\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 68.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.6s\n", + "\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.8s\n", + "\u001b[2m => => # Selecting previously unselected package git. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 68.9s\n", + "\u001b[2m => => # Preparing to unpack .../071-git_1%3a2.39.5-0+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.1s\n", + "\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.2s\n", + "\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.4s\n", + "\u001b[2m => => # Selecting previously unselected package libabsl20220623:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 69.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.5s\n", + "\u001b[2m => => # Preparing to unpack .../072-libabsl20220623_20220623.1-1_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libabsl20220623:amd64 (20220623.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libdav1d6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.6s\n", + "\u001b[2m => => # Selecting previously unselected package libaom3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libdav1d6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../074-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.7s\n", + "\u001b[2m => => # Preparing to unpack .../073-libaom3_3.6.0-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libaom3:amd64 (3.6.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libdav1d6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../074-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgav1-1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 69.9s\n", + "\u001b[2m => => # Selecting previously unselected package libdav1d6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../074-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgav1-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../075-libgav1-1_0.18.0-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgav1-1:amd64 (0.18.0-1+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.0s\n", + "\u001b[2m => => # Preparing to unpack .../074-libdav1d6_1.0.0-2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdav1d6:amd64 (1.0.0-2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgav1-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../075-libgav1-1_0.18.0-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgav1-1:amd64 (0.18.0-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.1s\n", + "\u001b[2m => => # Selecting previously unselected package libgav1-1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../075-libgav1-1_0.18.0-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgav1-1:amd64 (0.18.0-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.3s\n", + "\u001b[2m => => # Preparing to unpack .../075-libgav1-1_0.18.0-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgav1-1:amd64 (0.18.0-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.4s\n", + "\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 70.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.6s\n", + "\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.7s\n", + "\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.9s\n", + "\u001b[2m => => # Selecting previously unselected package librav1e0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 70.9s\n", + "\u001b[2m => => # Preparing to unpack .../076-librav1e0_0.5.1-6_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking librav1e0:amd64 (0.5.1-6) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjpeg62-turbo:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.1s\n", + "\u001b[2m => => # Selecting previously unselected package libsvtav1enc1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjpeg62-turbo:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../078-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.1s\n", + "\u001b[2m => => # Preparing to unpack .../077-libsvtav1enc1_1.4.1+dfsg-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjpeg62-turbo:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../078-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libyuv0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.3s\n", + "\u001b[2m => => # Preparing to unpack .../078-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libyuv0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../079-libyuv0_0.0~git20230123.b2528b0-1_amd64.de\n", + "\u001b[0m\u001b[2m => => # b ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libyuv0:amd64 (0.0~git20230123.b2528b0-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.4s\n", + "\u001b[2m => => # Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libyuv0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../079-libyuv0_0.0~git20230123.b2528b0-1_amd64.de\n", + "\u001b[0m\u001b[2m => => # b ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libyuv0:amd64 (0.0~git20230123.b2528b0-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libavif15:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.5s\n", + "\u001b[2m => => # Preparing to unpack .../079-libyuv0_0.0~git20230123.b2528b0-1_amd64.de\n", + "\u001b[0m\u001b[2m => => # b ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libyuv0:amd64 (0.0~git20230123.b2528b0-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libavif15:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../080-libavif15_0.11.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 71.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.6s\n", + "\u001b[2m => => # b ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libyuv0:amd64 (0.0~git20230123.b2528b0-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libavif15:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../080-libavif15_0.11.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpng16-16:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.7s\n", + "\u001b[2m => => # Selecting previously unselected package libavif15:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../080-libavif15_0.11.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpng16-16:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../081-libpng16-16_1.6.39-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpng16-16:amd64 (1.6.39-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 71.8s\n", + "\u001b[2m => => # Preparing to unpack .../080-libavif15_0.11.1-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libpng16-16:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../081-libpng16-16_1.6.39-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpng16-16:amd64 (1.6.39-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfreetype6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.0s\n", + "\u001b[2m => => # Preparing to unpack .../081-libpng16-16_1.6.39-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libpng16-16:amd64 (1.6.39-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfreetype6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../082-libfreetype6_2.12.1+dfsg-5+deb12u4_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.1s\n", + "\u001b[2m => => # Unpacking libpng16-16:amd64 (1.6.39-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfreetype6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../082-libfreetype6_2.12.1+dfsg-5+deb12u4_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.2s\n", + "\u001b[2m => => # Selecting previously unselected package libfreetype6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../082-libfreetype6_2.12.1+dfsg-5+deb12u4_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.4s\n", + "\u001b[2m => => # Selecting previously unselected package libfreetype6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../082-libfreetype6_2.12.1+dfsg-5+deb12u4_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.5s\n", + "\u001b[2m => => # Preparing to unpack .../082-libfreetype6_2.12.1+dfsg-5+deb12u4_amd64.d\n", + "\u001b[0m\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 72.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.6s\n", + "\u001b[2m => => # eb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfreetype6:amd64 (2.12.1+dfsg-5+deb12u4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libde265-0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.8s\n", + "\u001b[2m => => # Selecting previously unselected package libfontconfig1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libde265-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../084-libde265-0_1.0.11-1+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libde265-0:amd64 (1.0.11-1+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.8s\n", + "\u001b[2m => => # Preparing to unpack .../083-libfontconfig1_2.14.1-4_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libde265-0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../084-libde265-0_1.0.11-1+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libde265-0:amd64 (1.0.11-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnuma1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 72.9s\n", + "\u001b[2m => => # Preparing to unpack .../084-libde265-0_1.0.11-1+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libde265-0:amd64 (1.0.11-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libnuma1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../085-libnuma1_2.0.16-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx265-199:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.1s\n", + "\u001b[2m => => # Selecting previously unselected package libnuma1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../085-libnuma1_2.0.16-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx265-199:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../086-libx265-199_3.5-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libx265-199:amd64 (3.5-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.3s\n", + "\u001b[2m => => # Selecting previously unselected package libnuma1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../085-libnuma1_2.0.16-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx265-199:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../086-libx265-199_3.5-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libx265-199:amd64 (3.5-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.4s\n", + "\u001b[2m => => # Selecting previously unselected package libnuma1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../085-libnuma1_2.0.16-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx265-199:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../086-libx265-199_3.5-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libx265-199:amd64 (3.5-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 73.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.5s\n", + "\u001b[2m => => # Preparing to unpack .../085-libnuma1_2.0.16-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx265-199:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../086-libx265-199_3.5-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libx265-199:amd64 (3.5-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libheif1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.7s\n", + "\u001b[2m => => # Preparing to unpack .../086-libx265-199_3.5-2+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libx265-199:amd64 (3.5-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libheif1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../087-libheif1_1.15.1-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libheif1:amd64 (1.15.1-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libdeflate0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 73.8s\n", + "\u001b[2m => => # Preparing to unpack .../087-libheif1_1.15.1-1+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libheif1:amd64 (1.15.1-1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libdeflate0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../088-libdeflate0_1.14-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdeflate0:amd64 (1.14-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjbig0:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.0s\n", + "\u001b[2m => => # Selecting previously unselected package libdeflate0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../088-libdeflate0_1.14-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdeflate0:amd64 (1.14-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjbig0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../089-libjbig0_2.1-6.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjbig0:amd64 (2.1-6.1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.1s\n", + "\u001b[2m => => # Preparing to unpack .../088-libdeflate0_1.14-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libdeflate0:amd64 (1.14-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libjbig0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../089-libjbig0_2.1-6.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjbig0:amd64 (2.1-6.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblerc4:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.2s\n", + "\u001b[2m => => # Selecting previously unselected package libjbig0:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../089-libjbig0_2.1-6.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjbig0:amd64 (2.1-6.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblerc4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../090-liblerc4_4.0.0+ds-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.2s\n", + "\u001b[2m => => # Preparing to unpack .../089-libjbig0_2.1-6.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libjbig0:amd64 (2.1-6.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package liblerc4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../090-liblerc4_4.0.0+ds-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libwebp7:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.4s\n", + "\u001b[2m => => # Selecting previously unselected package liblerc4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../090-liblerc4_4.0.0+ds-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libwebp7:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../091-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.4s\n", + "\u001b[2m => => # Preparing to unpack .../090-liblerc4_4.0.0+ds-2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libwebp7:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../091-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtiff6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.6s\n", + "\u001b[2m => => # Selecting previously unselected package libwebp7:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../091-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtiff6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../092-libtiff6_4.5.0-6+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 74.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.6s\n", + "\u001b[2m => => # Preparing to unpack .../091-libwebp7_1.2.4-0.2+deb12u1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libwebp7:amd64 (1.2.4-0.2+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libtiff6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../092-libtiff6_4.5.0-6+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxau6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.8s\n", + "\u001b[2m => => # Selecting previously unselected package libtiff6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../092-libtiff6_4.5.0-6+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxau6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../093-libxau6_1%3a1.0.9-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxau6:amd64 (1:1.0.9-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 74.8s\n", + "\u001b[2m => => # Preparing to unpack .../092-libtiff6_4.5.0-6+deb12u2_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxau6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../093-libxau6_1%3a1.0.9-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxau6:amd64 (1:1.0.9-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxdmcp6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.0s\n", + "\u001b[2m => => # Selecting previously unselected package libxau6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../093-libxau6_1%3a1.0.9-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxau6:amd64 (1:1.0.9-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxdmcp6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../094-libxdmcp6_1%3a1.1.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.0s\n", + "\u001b[2m => => # Preparing to unpack .../093-libxau6_1%3a1.0.9-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxau6:amd64 (1:1.0.9-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxdmcp6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../094-libxdmcp6_1%3a1.1.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxcb1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.1s\n", + "\u001b[2m => => # Preparing to unpack .../094-libxdmcp6_1%3a1.1.2-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxcb1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../095-libxcb1_1.15-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.3s\n", + "\u001b[2m => => # Preparing to unpack .../095-libxcb1_1.15-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.5s\n", + "\u001b[2m => => # Preparing to unpack .../095-libxcb1_1.15-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 75.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.6s\n", + "\u001b[2m => => # Preparing to unpack .../095-libxcb1_1.15-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.8s\n", + "\u001b[2m => => # Preparing to unpack .../095-libxcb1_1.15-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 75.8s\n", + "\u001b[2m => => # Unpacking libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-data. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.0s\n", + "\u001b[2m => => # Preparing to unpack .../096-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../097-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.0s\n", + "\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-data (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libx11-6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../097-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxpm4:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.2s\n", + "\u001b[2m => => # Preparing to unpack .../097-libx11-6_2%3a1.8.4-2+deb12u2_amd64.deb ...\n", + "\u001b[0m\u001b[2m => => # Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxpm4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../098-libxpm4_1%3a3.5.12-1.1+deb12u1_amd64.deb .\n", + "\u001b[0m\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.2s\n", + "\u001b[2m => => # Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxpm4:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../098-libxpm4_1%3a3.5.12-1.1+deb12u1_amd64.deb .\n", + "\u001b[0m\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgd3:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.4s\n", + "\u001b[2m => => # .. \n", + "\u001b[0m\u001b[2m => => # Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libgd3:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../099-libgd3_2.3.3-9_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libgd3:amd64 (2.3.3-9) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc-devtools. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 76.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.5s\n", + "\u001b[2m => => # Unpacking libgd3:amd64 (2.3.3-9) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libc-devtools. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../100-libc-devtools_2.36-9+deb12u10_amd64.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libc-devtools (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-common. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.7s\n", + "\u001b[2m => => # Preparing to unpack .../100-libc-devtools_2.36-9+deb12u10_amd64.deb ..\n", + "\u001b[0m\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libc-devtools (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-common. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../101-libldap-common_2.5.13+dfsg-5_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-common (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 76.7s\n", + "\u001b[2m => => # . \n", + "\u001b[0m\u001b[2m => => # Unpacking libc-devtools (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libldap-common. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../101-libldap-common_2.5.13+dfsg-5_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-common (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.0s\n", + "\u001b[2m => => # Preparing to unpack .../101-libldap-common_2.5.13+dfsg-5_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libldap-common (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../102-libsasl2-modules_2.1.28+dfsg-10_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.1s\n", + "\u001b[2m => => # Unpacking libldap-common (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libsasl2-modules:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../102-libsasl2-modules_2.1.28+dfsg-10_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxext6:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.2s\n", + "\u001b[2m => => # Preparing to unpack .../102-libsasl2-modules_2.1.28+dfsg-10_amd64.deb \n", + "\u001b[0m\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxext6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../103-libxext6_2%3a1.3.4-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.3s\n", + "\u001b[2m => => # ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libsasl2-modules:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxext6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../103-libxext6_2%3a1.3.4-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxmuu1:amd64. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.4s\n", + "\u001b[2m => => # Selecting previously unselected package libxext6:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../103-libxext6_2%3a1.3.4-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxmuu1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../104-libxmuu1_2%3a1.1.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.4s\n", + "\u001b[2m => => # Preparing to unpack .../103-libxext6_2%3a1.3.4-1+b1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package libxmuu1:amd64. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../104-libxmuu1_2%3a1.1.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package make. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 77.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.5s\n", + "\u001b[2m => => # Preparing to unpack .../104-libxmuu1_2%3a1.1.3-3_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package make. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../105-make_4.3-4.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking make (4.3-4.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages-dev. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.7s\n", + "\u001b[2m => => # Selecting previously unselected package make. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../105-make_4.3-4.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking make (4.3-4.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages-dev. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../106-manpages-dev_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages-dev (6.03-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.8s\n", + "\u001b[2m => => # Preparing to unpack .../105-make_4.3-4.1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking make (4.3-4.1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package manpages-dev. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../106-manpages-dev_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages-dev (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package patch. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 77.9s\n", + "\u001b[2m => => # Preparing to unpack .../106-manpages-dev_6.03-2_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking manpages-dev (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package patch. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../107-patch_2.7.6-7_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking patch (2.7.6-7) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package psmisc. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.0s\n", + "\u001b[2m => => # Preparing to unpack .../107-patch_2.7.6-7_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking patch (2.7.6-7) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package psmisc. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../108-psmisc_23.6-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package publicsuffix. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.2s\n", + "\u001b[2m => => # Preparing to unpack .../108-psmisc_23.6-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package publicsuffix. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../109-publicsuffix_20230209.2326-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking publicsuffix (20230209.2326-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package unzip. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.3s\n", + "\u001b[2m => => # Preparing to unpack .../109-publicsuffix_20230209.2326-1_all.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking publicsuffix (20230209.2326-1) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package unzip. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../110-unzip_6.0-28_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking unzip (6.0-28) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package xauth. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.4s\n", + "\u001b[2m => => # Preparing to unpack .../110-unzip_6.0-28_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking unzip (6.0-28) ... \n", + "\u001b[0m\u001b[2m => => # Selecting previously unselected package xauth. \n", + "\u001b[0m\u001b[2m => => # Preparing to unpack .../111-xauth_1%3a1.1.2-1_amd64.deb ... \n", + "\u001b[0m\u001b[2m => => # Unpacking xauth (1:1.1.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libexpat1:amd64 (2.5.0-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 78.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.5s\n", + "\u001b[2m => => # Setting up libxau6:amd64 (1:1.0.9-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up manpages (6.03-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.6s\n", + "\u001b[2m => => # Setting up libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up unzip (6.0-28) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.8s\n", + "\u001b[2m => => # Setting up libpsl5:amd64 (0.21.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up unzip (6.0-28) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 78.9s\n", + "\u001b[2m => => # Setting up libicu72:amd64 (72.1-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up liblerc4:amd64 (4.0.0+ds-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up psmisc (23.6-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up unzip (6.0-28) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.0s\n", + "\u001b[2m => => # Setting up manpages (6.03-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up unzip (6.0-28) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcbor0.8:amd64 (0.8.0-2+b1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libbrotli1:amd64 (1.0.9-2+b6) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libsasl2-modules:amd64 (2.1.28+dfsg-10) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-common:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.1s\n", + "\u001b[2m => => # Setting up linux-libc-dev:amd64 (6.1.133-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libctf-nobfd0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libsvtav1enc1:amd64 (1.4.1+dfsg-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libgomp1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libldap-common (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libjbig0:amd64 (2.1-6.1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.2s\n", + "\u001b[2m => => # Setting up libmpc3:amd64 (1.3.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libatomic1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up patch (2.7.6-7) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libjsoncpp25:amd64 (1.9.5-4) ... \n", + "\u001b[0m\u001b[2m => => # Setting up fonts-dejavu-core (2.37-6) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libgdbm-compat4:amd64 (1.23-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.3s\n", + "\u001b[2m => => # Setting up libubsan1:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libnuma1:amd64 (2.0.16-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 79.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.5s\n", + "\u001b[2m => => # Setting up libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.7s\n", + "\u001b[2m => => # Setting up libnsl-dev:amd64 (1.3.0-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.7s\n", + "\u001b[2m => => # Setting up librhash0:amd64 (1.4.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libcrypt-dev:amd64 (1:4.4.33-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libtiff6:amd64 (4.5.0-6+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libasan8:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up procps (2:4.0.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up git-man (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 79.8s\n", + "\u001b[2m => => # Setting up libisl23:amd64 (0.25-1.1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libde265-0:amd64 (1.0.11-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libc-dev-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libbsd0:amd64 (0.11.7-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libyuv0:amd64 (0.0~git20230123.b2528b0-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up publicsuffix (20230209.2326-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.0s\n", + "\u001b[2m => => # Setting up libxdmcp6:amd64 (1:1.1.2-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up cpp-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxcb1:amd64 (1.15-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.1s\n", + "\u001b[2m => => # Setting up libavif15:amd64 (0.11.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libarchive13:amd64 (3.6.2-1+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up fontconfig-config (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.3s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.4s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 80.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.6s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.7s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 80.9s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.0s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.2s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.3s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.5s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 81.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.6s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.8s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 81.9s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.1s\n", + "\u001b[2m => => # debconf: unable to initialize frontend: Dialog \n", + "\u001b[0m\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.1s\n", + "\u001b[2m => => # debconf: (TERM is not set, so the dialog frontend is not usable.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: unable to initialize frontend: Readline \n", + "\u001b[0m\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[2m => => # Setting up libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.2s\n", + "\u001b[2m => => # debconf: (This frontend requires a controlling tty.) \n", + "\u001b[0m\u001b[2m => => # debconf: falling back to frontend: Teletype \n", + "\u001b[0m\u001b[2m => => # Setting up libedit2:amd64 (3.1-20221030-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libldap-2.5-0:amd64 (2.5.13+dfsg-5) ... \n", + "\u001b[0m\u001b[2m => => # Setting up perl (5.36.0-7+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libgprofng0:amd64 (2.40-2) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.4s\n", + "\u001b[2m => => # Setting up libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 82.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.6s\n", + "\u001b[2m => => # Setting up libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.8s\n", + "\u001b[2m => => # Setting up libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.9s\n", + "\u001b[2m => => # Setting up libfontconfig1:amd64 (2.14.1-4) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 82.9s\n", + "\u001b[2m => => # Setting up libxmuu1:amd64 (2:1.1.3-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up binutils-x86-64-linux-gnu (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libxpm4:amd64 (1:3.5.12-1.1+deb12u1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libstdc++-12-dev:amd64 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up openssh-client (1:9.2p1-2+deb12u5) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libheif1:amd64 (1.15.1-1+deb12u1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.1s\n", + "\u001b[2m => => # Setting up binutils (2.40-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up liberror-perl (0.17029-2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libgd3:amd64 (2.3.3-9) ... \n", + "\u001b[0m\u001b[2m => => # Setting up git (1:2.39.5-0+deb12u2) ... \n", + "\u001b[0m\u001b[2m => => # Setting up xauth (1:1.1.2-1) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.2s\n", + "\u001b[2m => => # Setting up xauth (1:1.1.2-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up cmake (3.25.1-1) ... \n", + "\u001b[0m\u001b[2m => => # Setting up libc-devtools (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.5s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 83.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.6s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.8s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 83.9s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.1s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.2s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.4s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 84.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.5s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.7s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 84.8s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.0s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.1s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.3s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.7s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.4s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 85.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.6s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.0s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.7s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 85.9s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.3s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.0s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.2s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.6s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.3s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.8s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.5s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 86.9s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.6s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.1s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.8s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.2s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 86.9s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.4s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.1s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.5s (5/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.2s\n", + "\u001b[2m => => # Setting up g++-12 (12.2.0-14) ... \n", + "\u001b[0m\u001b[2m => => # Setting up gcc (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # Setting up g++ (4:12.2.0-3) ... \n", + "\u001b[0m\u001b[2m => => # update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) \n", + "\u001b[0m\u001b[2m => => # in auto mode \n", + "\u001b[0m\u001b[2m => => # Processing triggers for libc-bin (2.36-9+deb12u10) ... \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.6s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\u001b[6A\u001b[0G\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.7s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 87.9s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.0s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.2s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.3s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.5s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.6s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 0.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.8s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 88.9s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.1s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.2s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.4s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.5s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 1.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.7s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 2.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 89.8s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 2.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.0s (6/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 90.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 0.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 91.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 1.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 92.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 2.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.3s\n", + "\u001b[2m => => # Collecting pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.4s\n", + "\u001b[2m => => # Collecting pip \n", + "\u001b[0m\u001b[2m => => # Downloading pip-25.0.1-py3-none-any.whl.metadata (3.7 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting wheel \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.6s\n", + "\u001b[2m => => # Downloading pip-25.0.1-py3-none-any.whl.metadata (3.7 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting wheel \n", + "\u001b[0m\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting six \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting setuptools \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.7s\n", + "\u001b[2m => => # Downloading pip-25.0.1-py3-none-any.whl (1.8 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 41.0 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 93.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 3.9s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.1s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.2s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.4s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.5s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.7s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 4.8s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 94.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.0s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.1s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.3s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.4s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.6s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.7s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 95.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 5.9s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.0s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.2s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.3s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.5s\n", + "\u001b[2m => => # Downloading wheel-0.45.1-py3-none-any.whl (72 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.6s\n", + "\u001b[2m => => # Downloading setuptools-79.0.0-py3-none-any.whl (1.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 47.1 MB/s eta 0\n", + "\u001b[0m\u001b[2m => => # :00:00 \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: wheel, six, setuptools, pip \n", + "\u001b[0m\u001b[2m => => # Successfully installed pip-25.0.1 setuptools-79.0.0 six-1.17.0 wheel-0\n", + "\u001b[0m\u001b[2m => => # .45.1 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.7s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 96.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 6.9s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.0s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.2s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.3s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.5s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.5s\n", + "\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[2m => => # Collecting awslambdaric \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.7s\n", + "\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[2m => => # Collecting awslambdaric \n", + "\u001b[0m\u001b[2m => => # Downloading awslambdaric-3.0.2-cp312-cp312-manylinux_2_17_x86_64.man\n", + "\u001b[0m\u001b[2m => => # ylinux2014_x86_64.whl.metadata (7.4 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 97.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 7.9s\n", + "\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[2m => => # Collecting awslambdaric \n", + "\u001b[0m\u001b[2m => => # Downloading awslambdaric-3.0.2-cp312-cp312-manylinux_2_17_x86_64.man\n", + "\u001b[0m\u001b[2m => => # ylinux2014_x86_64.whl.metadata (7.4 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.1s\n", + "\u001b[2m => => # Downloading redis-5.2.1-py3-none-any.whl.metadata (9.1 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting httplib2 \n", + "\u001b[0m\u001b[2m => => # Downloading httplib2-0.22.0-py3-none-any.whl.metadata (2.6 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting requests \n", + "\u001b[0m\u001b[2m => => # Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting numpy \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.2s\n", + "\u001b[2m => => # Collecting requests \n", + "\u001b[0m\u001b[2m => => # Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting numpy \n", + "\u001b[0m\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2\n", + "\u001b[0m\u001b[2m => => # 014_x86_64.whl.metadata (62 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting scipy \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.3s\n", + "\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2\n", + "\u001b[0m\u001b[2m => => # 014_x86_64.whl.metadata (62 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting scipy \n", + "\u001b[0m\u001b[2m => => # Downloading scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux\n", + "\u001b[0m\u001b[2m => => # 2014_x86_64.whl.metadata (61 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting pandas \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.5s\n", + "\u001b[2m => => # Collecting pika \n", + "\u001b[0m\u001b[2m => => # Downloading pika-1.3.2-py3-none-any.whl.metadata (13 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting kafka-python \n", + "\u001b[0m\u001b[2m => => # Downloading kafka_python-2.1.5-py2.py3-none-any.whl.metadata (9.2 kB\n", + "\u001b[0m\u001b[2m => => # ) \n", + "\u001b[0m\u001b[2m => => # Collecting cloudpickle \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.6s\n", + "\u001b[2m => => # Downloading cloudpickle-3.1.1-py3-none-any.whl.metadata (7.1 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting ps-mem \n", + "\u001b[0m\u001b[2m => => # Downloading ps_mem-3.14-py2.py3-none-any.whl.metadata (1.9 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting tblib \n", + "\u001b[0m\u001b[2m => => # Downloading tblib-3.1.0-py3-none-any.whl.metadata (25 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting psutil \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 8.8s\n", + "\u001b[2m => => # Downloading simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manyl\n", + "\u001b[0m\u001b[2m => => # inux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (\n", + "\u001b[0m\u001b[2m => => # 3.2 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting snapshot-restore-py>=1.0.0 (from awslambdaric) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl.metadata (3.8\n", + "\u001b[0m\u001b[2m => => # kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 98.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.0s\n", + "\u001b[2m => => # Downloading simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manyl\n", + "\u001b[0m\u001b[2m => => # inux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (\n", + "\u001b[0m\u001b[2m => => # 3.2 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting snapshot-restore-py>=1.0.0 (from awslambdaric) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl.metadata (3.8\n", + "\u001b[0m\u001b[2m => => # kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.0s\n", + "\u001b[2m => => # inux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (\n", + "\u001b[0m\u001b[2m => => # 3.2 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting snapshot-restore-py>=1.0.0 (from awslambdaric) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl.metadata (3.8\n", + "\u001b[0m\u001b[2m => => # kB) \n", + "\u001b[0m\u001b[2m => => # Collecting botocore<1.38.0,>=1.37.38 (from boto3) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.1s\n", + "\u001b[2m => => # Collecting jmespath<2.0.0,>=0.7.1 (from boto3) \n", + "\u001b[0m\u001b[2m => => # Downloading jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting s3transfer<0.12.0,>=0.11.0 (from boto3) \n", + "\u001b[0m\u001b[2m => => # Downloading s3transfer-0.11.5-py3-none-any.whl.metadata (1.7 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2 (from h\n", + "\u001b[0m\u001b[2m => => # ttplib2) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.2s\n", + "\u001b[2m => => # Collecting charset-normalizer<4,>=2 (from requests) \n", + "\u001b[0m\u001b[2m => => # Downloading charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_\n", + "\u001b[0m\u001b[2m => => # 64.manylinux2014_x86_64.whl.metadata (35 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting idna<4,>=2.5 (from requests) \n", + "\u001b[0m\u001b[2m => => # Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting urllib3<3,>=1.21.1 (from requests) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.3s\n", + "\u001b[2m => => # Collecting python-dateutil>=2.8.2 (from pandas) \n", + "\u001b[0m\u001b[2m => => # Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadat\n", + "\u001b[0m\u001b[2m => => # a (8.4 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting pytz>=2020.1 (from pandas) \n", + "\u001b[0m\u001b[2m => => # Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting tzdata>=2022.7 (from pandas) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.5s\n", + "\u001b[2m => => # Collecting tzdata>=2022.7 (from pandas) \n", + "\u001b[0m\u001b[2m => => # Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) \n", + "\u001b[0m\u001b[2m => => # Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading awslambdaric-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manyl\n", + "\u001b[0m\u001b[2m => => # inux2014_x86_64.whl (343 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.7s\n", + "\u001b[2m => => # Downloading boto3-1.37.38-py3-none-any.whl (139 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading redis-5.2.1-py3-none-any.whl (261 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading httplib2-0.22.0-py3-none-any.whl (96 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading requests-2.32.3-py3-none-any.whl (64 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux201\n", + "\u001b[0m\u001b[2m => => # 4_x86_64.whl (16.1 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.7s\n", + "\u001b[2m => => # Downloading httplib2-0.22.0-py3-none-any.whl (96 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading requests-2.32.3-py3-none-any.whl (64 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux201\n", + "\u001b[0m\u001b[2m => => # 4_x86_64.whl (16.1 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.1/16.1 MB 94.4 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 99.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six setu 9.9s\n", + "\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux201\n", + "\u001b[0m\u001b[2m => => # 4_x86_64.whl (16.1 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.1/16.1 MB 94.4 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[2m => => # Downloading scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux20\n", + "\u001b[0m\u001b[2m => => # 14_x86_64.whl (37.3 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.0s\n", + "\u001b[2m => => # Downloading numpy-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux201\n", + "\u001b[0m\u001b[2m => => # 4_x86_64.whl (16.1 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.1/16.1 MB 94.4 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[2m => => # Downloading scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux20\n", + "\u001b[0m\u001b[2m => => # 14_x86_64.whl (37.3 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.1s\n", + "\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.1/16.1 MB 94.4 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[2m => => # Downloading scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux20\n", + "\u001b[0m\u001b[2m => => # 14_x86_64.whl (37.3 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.3/37.3 MB 93.1 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.3s\n", + "\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.3/37.3 MB 93.1 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[2m => => # Downloading pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux20\n", + "\u001b[0m\u001b[2m => => # 14_x86_64.whl (12.7 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.7/12.7 MB 89.6 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.5s\n", + "\u001b[2m => => # Downloading cloudpickle-3.1.1-py3-none-any.whl (20 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading ps_mem-3.14-py2.py3-none-any.whl (19 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading tblib-3.1.0-py3-none-any.whl (12 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010\n", + "\u001b[0m\u001b[2m => => # _x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading botocore-1.37.38-py3-none-any.whl (13.5 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.6s\n", + "\u001b[2m => => # Downloading cloudpickle-3.1.1-py3-none-any.whl (20 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading ps_mem-3.14-py2.py3-none-any.whl (19 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading tblib-3.1.0-py3-none-any.whl (12 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010\n", + "\u001b[0m\u001b[2m => => # _x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading botocore-1.37.38-py3-none-any.whl (13.5 MB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.7s\n", + "\u001b[2m => => # Downloading tblib-3.1.0-py3-none-any.whl (12 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010\n", + "\u001b[0m\u001b[2m => => # _x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading botocore-1.37.38-py3-none-any.whl (13.5 MB) \n", + "\u001b[0m\u001b[2m => => # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 35.1 MB/s eta\n", + "\u001b[0m\u001b[2m => => # 0:00:00 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 100.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 10.8s\n", + "\u001b[2m => => # Downloading idna-3.10-py3-none-any.whl (70 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading jmespath-1.0.1-py3-none-any.whl (20 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading pyparsing-3.2.3-py3-none-any.whl (111 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading s3transfer-0.11.5-py3-none-any.whl (84 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.0s\n", + "\u001b[2m => => # Downloading simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manylin\n", + "\u001b[0m\u001b[2m => => # ux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (152 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl (3.8 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.1s\n", + "\u001b[2m => => # Downloading simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manylin\n", + "\u001b[0m\u001b[2m => => # ux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (152 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl (3.8 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.3s\n", + "\u001b[2m => => # Downloading simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manylin\n", + "\u001b[0m\u001b[2m => => # ux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (152 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading snapshot_restore_py-1.0.0-py3-none-any.whl (3.8 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) \n", + "\u001b[0m\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 101.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 11.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 102.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 12.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 103.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 13.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 14.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 104.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 105.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 15.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 106.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 16.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 107.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 17.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 108.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 18.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 109.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 19.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 110.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 20.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 111.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 21.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 112.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 22.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 113.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 23.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 114.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 24.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 115.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 25.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 116.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 26.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 117.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 27.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 118.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 28.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 119.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 29.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 120.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 30.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.4s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.4s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.7s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.7s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 121.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 31.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.0s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.0s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.3s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.5s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.6s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.8s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 122.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 32.9s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.1s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.2s\n", + "\u001b[2m => => # Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) \n", + "\u001b[0m\u001b[2m => => # Installing collected packages: pytz, ps-mem, kafka-python, urllib3, tz\n", + "\u001b[0m\u001b[2m => => # data, tblib, snapshot-restore-py, six, simplejson, redis, pyparsing, p\n", + "\u001b[0m\u001b[2m => => # sutil, pika, numpy, jmespath, idna, cloudpickle, charset-normalizer, c\n", + "\u001b[0m\u001b[2m => => # ertifi, scipy, requests, python-dateutil, httplib2, awslambdaric, pand\n", + "\u001b[0m\u001b[2m => => # as, botocore, s3transfer, boto3 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.3s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.4s\n", + "\u001b[2m => => # 38 certifi-2025.1.31 charset-normalizer-3.4.1 cloudpickle-3.1.1 httpli\n", + "\u001b[0m\u001b[2m => => # b2-0.22.0 idna-3.10 jmespath-1.0.1 kafka-python-2.1.5 numpy-2.2.5 pand\n", + "\u001b[0m\u001b[2m => => # as-2.2.3 pika-1.3.2 ps-mem-3.14 psutil-7.0.0 pyparsing-3.2.3 python-da\n", + "\u001b[0m\u001b[2m => => # teutil-2.9.0.post0 pytz-2025.2 redis-5.2.1 requests-2.32.3 s3transfer-\n", + "\u001b[0m\u001b[2m => => # 0.11.5 scipy-1.15.2 simplejson-3.20.1 six-1.17.0 snapshot-restore-py-1\n", + "\u001b[0m\u001b[2m => => # .0.0 tblib-3.1.0 tzdata-2025.2 urllib3-2.4.0 \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.5s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.5s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.6s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.7s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.8s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 33.8s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 123.9s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.0s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.1s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.1s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.2s (7/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.3s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.3s (8/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\u001b[6A\u001b[0G\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.5s (8/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m => [5/8] WORKDIR /function 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.6s (8/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m => [5/8] WORKDIR /function 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 124.8s (9/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.0s (10/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.0s (10/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.2s\n", + "\u001b[2m => => # Archive: lithops_lambda.zip \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.1s (10/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.3s\n", + "\u001b[2m => => # inflating: lithops/serverless/backends/gcp_cloudrun/cloudrun.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/serverless/backends/__init__.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/serverless/backends/openwhisk/config.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/serverless/backends/openwhisk/entry_point.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/serverless/backends/openwhisk/__init__.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/serverless/backends/openwhisk/openwhisk.py \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.2s (10/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.4s\n", + "\u001b[2m => => # inflating: lithops/storage/storage.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/libs/imp/__init__.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/libs/imp/imp.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/libs/inspect/__init__.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/libs/inspect/inspect.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/libs/multyvac/__init__.py \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.4s (10/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[2m => => # inflating: lithops/worker/handler.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/worker/__init__.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/worker/invoker.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/worker/utils.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/worker/jobrunner.py \n", + "\u001b[0m\u001b[2m => => # inflating: lithops/worker/status.py \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\u001b[6A\u001b[0G\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 125.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 0.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 126.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 1.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 127.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 2.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 128.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 3.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 129.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 4.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 130.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 5.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 131.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 6.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 132.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 7.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 133.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 8.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 134.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib numc 9.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 135.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 10.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 136.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 11.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 137.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 12.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 138.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 13.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 139.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 14.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 140.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 15.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 141.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 16.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 142.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 17.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 143.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 18.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 144.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 19.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 145.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 20.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 146.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 21.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 147.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 22.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 148.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 23.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 149.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 24.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 150.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 25.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 151.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 26.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 152.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 27.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 153.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 28.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 154.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 29.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 155.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 30.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 156.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 31.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 157.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 32.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 158.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 33.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 159.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 34.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 160.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 35.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 36.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 36.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 36.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 161.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 36.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 36.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 162.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 37.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 163.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.4s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.7s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 38.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.0s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.3s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 164.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.5s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.0s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.6s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.8s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.3s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 39.9s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.1s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.6s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.2s\n", + "\u001b[2m => => # Running command git clone --filter=blob:none --quiet https://github.\n", + "\u001b[0m\u001b[2m => => # com/zarr-developers/VirtualiZarr.git /tmp/pip-req-build-cicy9lpe \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.8s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.4s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 165.9s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.5s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.1s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.7s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.2s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 40.8s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.4s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.0s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.5s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.1s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.7s (11/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[2m => => # WARNING: Running pip as the 'root' user can result in broken permissio\n", + "\u001b[0m\u001b[2m => => # ns and conflicting behaviour with the system package manager, possibly\n", + "\u001b[0m\u001b[2m => => # rendering your system unusable. It is recommended to use a virtual en\n", + "\u001b[0m\u001b[2m => => # vironment instead: https://pip.pypa.io/warnings/venv. Use the --root-u\n", + "\u001b[0m\u001b[2m => => # ser-action option if you know what you are doing and want to suppress \n", + "\u001b[0m\u001b[2m => => # this warning. \n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.7s (12/12) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\u001b[6A\u001b[0G\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 166.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.2s\n", + " => => exporting layers 0.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.3s\n", + " => => exporting layers 0.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.5s\n", + " => => exporting layers 0.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.6s\n", + " => => exporting layers 0.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.8s\n", + " => => exporting layers 0.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 0.9s\n", + " => => exporting layers 0.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 167.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.1s\n", + " => => exporting layers 1.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.2s\n", + " => => exporting layers 1.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.4s\n", + " => => exporting layers 1.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.5s\n", + " => => exporting layers 1.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.7s\n", + " => => exporting layers 1.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 1.8s\n", + " => => exporting layers 1.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.0s\n", + " => => exporting layers 2.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 168.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.1s\n", + " => => exporting layers 2.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.3s\n", + " => => exporting layers 2.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.4s\n", + " => => exporting layers 2.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.6s\n", + " => => exporting layers 2.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.7s\n", + " => => exporting layers 2.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 2.9s\n", + " => => exporting layers 2.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.0s\n", + " => => exporting layers 3.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 169.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.2s\n", + " => => exporting layers 3.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.3s\n", + " => => exporting layers 3.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.5s\n", + " => => exporting layers 3.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.6s\n", + " => => exporting layers 3.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.8s\n", + " => => exporting layers 3.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 3.9s\n", + " => => exporting layers 3.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 170.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.1s\n", + " => => exporting layers 4.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.2s\n", + " => => exporting layers 4.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.4s\n", + " => => exporting layers 4.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.5s\n", + " => => exporting layers 4.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.7s\n", + " => => exporting layers 4.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 4.8s\n", + " => => exporting layers 4.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.0s\n", + " => => exporting layers 5.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 171.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.1s\n", + " => => exporting layers 5.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.3s\n", + " => => exporting layers 5.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.4s\n", + " => => exporting layers 5.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.6s\n", + " => => exporting layers 5.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.7s\n", + " => => exporting layers 5.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 5.9s\n", + " => => exporting layers 5.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.0s\n", + " => => exporting layers 6.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 172.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.2s\n", + " => => exporting layers 6.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.3s\n", + " => => exporting layers 6.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.5s\n", + " => => exporting layers 6.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.6s\n", + " => => exporting layers 6.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.8s\n", + " => => exporting layers 6.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 6.9s\n", + " => => exporting layers 6.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 173.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.1s\n", + " => => exporting layers 7.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.2s\n", + " => => exporting layers 7.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.4s\n", + " => => exporting layers 7.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.5s\n", + " => => exporting layers 7.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.7s\n", + " => => exporting layers 7.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 7.8s\n", + " => => exporting layers 7.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.0s\n", + " => => exporting layers 8.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 174.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.1s\n", + " => => exporting layers 8.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.3s\n", + " => => exporting layers 8.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.4s\n", + " => => exporting layers 8.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.6s\n", + " => => exporting layers 8.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.7s\n", + " => => exporting layers 8.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 8.9s\n", + " => => exporting layers 8.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.0s\n", + " => => exporting layers 9.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 175.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.2s\n", + " => => exporting layers 9.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.3s\n", + " => => exporting layers 9.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.5s\n", + " => => exporting layers 9.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.6s\n", + " => => exporting layers 9.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.8s\n", + " => => exporting layers 9.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 9.9s\n", + " => => exporting layers 9.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 176.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.1s\n", + " => => exporting layers 10.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.2s\n", + " => => exporting layers 10.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.4s\n", + " => => exporting layers 10.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.5s\n", + " => => exporting layers 10.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.7s\n", + " => => exporting layers 10.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 10.8s\n", + " => => exporting layers 10.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.0s\n", + " => => exporting layers 11.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 177.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.1s\n", + " => => exporting layers 11.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.3s\n", + " => => exporting layers 11.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.4s\n", + " => => exporting layers 11.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.6s\n", + " => => exporting layers 11.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.7s\n", + " => => exporting layers 11.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 11.9s\n", + " => => exporting layers 11.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.0s\n", + " => => exporting layers 12.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 178.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.2s\n", + " => => exporting layers 12.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.3s\n", + " => => exporting layers 12.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.5s\n", + " => => exporting layers 12.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.6s\n", + " => => exporting layers 12.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.8s\n", + " => => exporting layers 12.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 12.9s\n", + " => => exporting layers 12.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 179.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.1s\n", + " => => exporting layers 13.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.2s\n", + " => => exporting layers 13.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.4s\n", + " => => exporting layers 13.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.5s\n", + " => => exporting layers 13.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.7s\n", + " => => exporting layers 13.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 13.8s\n", + " => => exporting layers 13.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.0s\n", + " => => exporting layers 14.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 180.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.1s\n", + " => => exporting layers 14.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.3s\n", + " => => exporting layers 14.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.4s\n", + " => => exporting layers 14.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.6s\n", + " => => exporting layers 14.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.7s\n", + " => => exporting layers 14.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 14.9s\n", + " => => exporting layers 14.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.0s\n", + " => => exporting layers 15.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 181.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.2s\n", + " => => exporting layers 15.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.3s\n", + " => => exporting layers 15.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.5s\n", + " => => exporting layers 15.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.6s\n", + " => => exporting layers 15.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.8s\n", + " => => exporting layers 15.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 15.9s\n", + " => => exporting layers 15.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 182.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.1s\n", + " => => exporting layers 16.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.2s\n", + " => => exporting layers 16.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.4s\n", + " => => exporting layers 16.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.5s\n", + " => => exporting layers 16.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.7s\n", + " => => exporting layers 16.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 16.8s\n", + " => => exporting layers 16.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.0s\n", + " => => exporting layers 17.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 183.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.1s\n", + " => => exporting layers 17.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.3s\n", + " => => exporting layers 17.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.4s\n", + " => => exporting layers 17.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.6s\n", + " => => exporting layers 17.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.7s\n", + " => => exporting layers 17.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 17.9s\n", + " => => exporting layers 17.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.0s\n", + " => => exporting layers 18.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 184.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.2s\n", + " => => exporting layers 18.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.3s\n", + " => => exporting layers 18.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.5s\n", + " => => exporting layers 18.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.6s\n", + " => => exporting layers 18.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.8s\n", + " => => exporting layers 18.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 18.9s\n", + " => => exporting layers 18.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 185.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.1s\n", + " => => exporting layers 19.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.2s\n", + " => => exporting layers 19.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.4s\n", + " => => exporting layers 19.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.5s\n", + " => => exporting layers 19.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.7s\n", + " => => exporting layers 19.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 19.8s\n", + " => => exporting layers 19.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.0s\n", + " => => exporting layers 20.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 186.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.1s\n", + " => => exporting layers 20.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.3s\n", + " => => exporting layers 20.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.4s\n", + " => => exporting layers 20.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.6s\n", + " => => exporting layers 20.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.7s\n", + " => => exporting layers 20.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 20.9s\n", + " => => exporting layers 20.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.0s\n", + " => => exporting layers 21.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 187.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.2s\n", + " => => exporting layers 21.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.3s\n", + " => => exporting layers 21.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.5s\n", + " => => exporting layers 21.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.6s\n", + " => => exporting layers 21.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.8s\n", + " => => exporting layers 21.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 21.9s\n", + " => => exporting layers 21.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 188.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.1s\n", + " => => exporting layers 22.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.2s\n", + " => => exporting layers 22.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.4s\n", + " => => exporting layers 22.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.5s\n", + " => => exporting layers 22.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.7s\n", + " => => exporting layers 22.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 22.8s\n", + " => => exporting layers 22.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.0s\n", + " => => exporting layers 23.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 189.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.1s\n", + " => => exporting layers 23.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.3s\n", + " => => exporting layers 23.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.4s\n", + " => => exporting layers 23.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.6s\n", + " => => exporting layers 23.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.7s\n", + " => => exporting layers 23.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 23.9s\n", + " => => exporting layers 23.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.0s\n", + " => => exporting layers 24.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 190.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.2s\n", + " => => exporting layers 24.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.3s\n", + " => => exporting layers 24.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.5s\n", + " => => exporting layers 24.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.6s\n", + " => => exporting layers 24.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.8s\n", + " => => exporting layers 24.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 24.9s\n", + " => => exporting layers 24.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 191.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.1s\n", + " => => exporting layers 25.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.2s\n", + " => => exporting layers 25.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.4s\n", + " => => exporting layers 25.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.5s\n", + " => => exporting layers 25.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.7s\n", + " => => exporting layers 25.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 25.8s\n", + " => => exporting layers 25.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.0s\n", + " => => exporting layers 26.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 192.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.1s\n", + " => => exporting layers 26.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.3s\n", + " => => exporting layers 26.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.4s\n", + " => => exporting layers 26.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.6s\n", + " => => exporting layers 26.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.7s\n", + " => => exporting layers 26.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 26.9s\n", + " => => exporting layers 26.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.0s\n", + " => => exporting layers 27.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 193.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.2s\n", + " => => exporting layers 27.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.3s\n", + " => => exporting layers 27.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.5s\n", + " => => exporting layers 27.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.6s\n", + " => => exporting layers 27.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.8s\n", + " => => exporting layers 27.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 27.9s\n", + " => => exporting layers 27.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 194.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.1s\n", + " => => exporting layers 28.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.2s\n", + " => => exporting layers 28.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.4s\n", + " => => exporting layers 28.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.5s\n", + " => => exporting layers 28.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.7s\n", + " => => exporting layers 28.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 28.8s\n", + " => => exporting layers 28.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.0s\n", + " => => exporting layers 29.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 195.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.1s\n", + " => => exporting layers 29.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.3s\n", + " => => exporting layers 29.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.4s\n", + " => => exporting layers 29.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.6s\n", + " => => exporting layers 29.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.7s\n", + " => => exporting layers 29.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 29.9s\n", + " => => exporting layers 29.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.0s\n", + " => => exporting layers 30.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 196.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.2s\n", + " => => exporting layers 30.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.3s\n", + " => => exporting layers 30.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.5s\n", + " => => exporting layers 30.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.6s\n", + " => => exporting layers 30.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.8s\n", + " => => exporting layers 30.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 30.9s\n", + " => => exporting layers 30.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 197.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.1s\n", + " => => exporting layers 31.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.2s\n", + " => => exporting layers 31.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.4s\n", + " => => exporting layers 31.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.5s\n", + " => => exporting layers 31.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.7s\n", + " => => exporting layers 31.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 31.8s\n", + " => => exporting layers 31.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.0s\n", + " => => exporting layers 32.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 198.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.1s\n", + " => => exporting layers 32.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.3s\n", + " => => exporting layers 32.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.4s\n", + " => => exporting layers 32.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.6s\n", + " => => exporting layers 32.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.7s\n", + " => => exporting layers 32.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 32.9s\n", + " => => exporting layers 32.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.0s\n", + " => => exporting layers 33.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 199.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.2s\n", + " => => exporting layers 33.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.3s\n", + " => => exporting layers 33.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.5s\n", + " => => exporting layers 33.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.6s\n", + " => => exporting layers 33.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.8s\n", + " => => exporting layers 33.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 33.9s\n", + " => => exporting layers 33.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 200.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.1s\n", + " => => exporting layers 34.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.2s\n", + " => => exporting layers 34.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.4s\n", + " => => exporting layers 34.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.5s\n", + " => => exporting layers 34.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.7s\n", + " => => exporting layers 34.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 34.8s\n", + " => => exporting layers 34.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.0s\n", + " => => exporting layers 35.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 201.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.1s\n", + " => => exporting layers 35.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.3s\n", + " => => exporting layers 35.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.4s\n", + " => => exporting layers 35.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.6s\n", + " => => exporting layers 35.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.7s\n", + " => => exporting layers 35.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 35.9s\n", + " => => exporting layers 35.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.0s\n", + " => => exporting layers 36.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 202.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.2s\n", + " => => exporting layers 36.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.3s\n", + " => => exporting layers 36.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.5s\n", + " => => exporting layers 36.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.6s\n", + " => => exporting layers 36.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.8s\n", + " => => exporting layers 36.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 36.9s\n", + " => => exporting layers 36.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 203.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.1s\n", + " => => exporting layers 37.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.2s\n", + " => => exporting layers 37.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.4s\n", + " => => exporting layers 37.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.5s\n", + " => => exporting layers 37.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.7s\n", + " => => exporting layers 37.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 37.8s\n", + " => => exporting layers 37.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.0s\n", + " => => exporting layers 38.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 204.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.1s\n", + " => => exporting layers 38.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.3s\n", + " => => exporting layers 38.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.4s\n", + " => => exporting layers 38.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.6s\n", + " => => exporting layers 38.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.7s\n", + " => => exporting layers 38.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 38.9s\n", + " => => exporting layers 38.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.0s\n", + " => => exporting layers 39.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 205.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.2s\n", + " => => exporting layers 39.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.3s\n", + " => => exporting layers 39.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.5s\n", + " => => exporting layers 39.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.6s\n", + " => => exporting layers 39.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.8s\n", + " => => exporting layers 39.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 39.9s\n", + " => => exporting layers 39.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 206.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.1s\n", + " => => exporting layers 40.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.2s\n", + " => => exporting layers 40.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.4s\n", + " => => exporting layers 40.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.5s\n", + " => => exporting layers 40.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.7s\n", + " => => exporting layers 40.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 40.8s\n", + " => => exporting layers 40.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.0s\n", + " => => exporting layers 41.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 207.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.1s\n", + " => => exporting layers 41.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.3s\n", + " => => exporting layers 41.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.4s\n", + " => => exporting layers 41.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.6s\n", + " => => exporting layers 41.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.7s\n", + " => => exporting layers 41.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 41.9s\n", + " => => exporting layers 41.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.0s\n", + " => => exporting layers 42.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 208.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.2s\n", + " => => exporting layers 42.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.3s\n", + " => => exporting layers 42.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.5s\n", + " => => exporting layers 42.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.6s\n", + " => => exporting layers 42.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.8s\n", + " => => exporting layers 42.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 42.9s\n", + " => => exporting layers 42.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 209.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.1s\n", + " => => exporting layers 43.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.2s\n", + " => => exporting layers 43.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.4s\n", + " => => exporting layers 43.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.5s\n", + " => => exporting layers 43.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.7s\n", + " => => exporting layers 43.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 43.8s\n", + " => => exporting layers 43.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.0s\n", + " => => exporting layers 44.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 210.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.1s\n", + " => => exporting layers 44.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.3s\n", + " => => exporting layers 44.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.4s\n", + " => => exporting layers 44.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.6s\n", + " => => exporting layers 44.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.7s\n", + " => => exporting layers 44.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 44.9s\n", + " => => exporting layers 44.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.0s\n", + " => => exporting layers 45.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 211.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.2s\n", + " => => exporting layers 45.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.3s\n", + " => => exporting layers 45.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.5s\n", + " => => exporting layers 45.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.6s\n", + " => => exporting layers 45.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.8s\n", + " => => exporting layers 45.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 45.9s\n", + " => => exporting layers 45.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 212.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.1s\n", + " => => exporting layers 46.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.2s\n", + " => => exporting layers 46.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.4s\n", + " => => exporting layers 46.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.5s\n", + " => => exporting layers 46.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.7s\n", + " => => exporting layers 46.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 46.8s\n", + " => => exporting layers 46.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.0s\n", + " => => exporting layers 47.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 213.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.1s\n", + " => => exporting layers 47.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.3s\n", + " => => exporting layers 47.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.4s\n", + " => => exporting layers 47.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.6s\n", + " => => exporting layers 47.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.7s\n", + " => => exporting layers 47.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 47.9s\n", + " => => exporting layers 47.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.0s\n", + " => => exporting layers 48.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 214.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.2s\n", + " => => exporting layers 48.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.3s\n", + " => => exporting layers 48.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.5s\n", + " => => exporting layers 48.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.6s\n", + " => => exporting layers 48.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.8s\n", + " => => exporting layers 48.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 48.9s\n", + " => => exporting layers 48.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 215.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.1s\n", + " => => exporting layers 49.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.2s\n", + " => => exporting layers 49.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.4s\n", + " => => exporting layers 49.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.5s\n", + " => => exporting layers 49.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.7s\n", + " => => exporting layers 49.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 49.8s\n", + " => => exporting layers 49.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.0s\n", + " => => exporting layers 50.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 216.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.1s\n", + " => => exporting layers 50.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.3s\n", + " => => exporting layers 50.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.4s\n", + " => => exporting layers 50.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.6s\n", + " => => exporting layers 50.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.7s\n", + " => => exporting layers 50.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 50.9s\n", + " => => exporting layers 50.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.0s\n", + " => => exporting layers 51.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 217.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.2s\n", + " => => exporting layers 51.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.3s\n", + " => => exporting layers 51.3s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.2s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.5s\n", + " => => exporting layers 51.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.6s\n", + " => => exporting layers 51.6s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.5s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.8s\n", + " => => exporting layers 51.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 51.9s\n", + " => => exporting layers 51.9s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 218.8s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.1s\n", + " => => exporting layers 52.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.2s\n", + " => => exporting layers 52.2s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.1s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.4s\n", + " => => exporting layers 52.4s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.3s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.5s\n", + " => => exporting layers 52.5s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.4s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.7s\n", + " => => exporting layers 52.7s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.6s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 52.8s\n", + " => => exporting layers 52.8s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.7s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 53.0s\n", + " => => exporting layers 53.0s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 219.9s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 53.1s\n", + " => => exporting layers 53.1s\n", + "\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 220.0s (12/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m => exporting to image 53.2s\n", + "\u001b[34m => => exporting layers 53.2s\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 220.3s (13/13) docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m\u001b[34m => exporting to image 53.3s\n", + "\u001b[0m\u001b[34m => => exporting layers 53.2s\n", + "\u001b[0m\u001b[34m => => exporting manifest sha256:1e4c7966c32eec1de26d8bba2ee74edbdb7410f2 0.0s\n", + "\u001b[0m\u001b[34m => => exporting config sha256:91f568a2f3ba40d747fdd4dc422ff1295b16292b4b 0.0s\n", + "\u001b[0m\u001b[34m => => naming to docker.io/library/virtualizarr-runtime:latest 0.0s\n", + "\u001b[0m\u001b[?25h\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[1A\u001b[0G\u001b[?25l[+] Building 220.4s (13/13) FINISHED docker:default\n", + "\u001b[34m => [internal] load build definition from Dockerfile 0.0s\n", + "\u001b[0m\u001b[34m => => transferring dockerfile: 1.92kB 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load metadata for docker.io/library/python:3.12-slim-bookw 0.3s\n", + "\u001b[0m\u001b[34m => [internal] load .dockerignore 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 2B 0.0s\n", + "\u001b[0m\u001b[34m => CACHED [1/8] FROM docker.io/library/python:3.12-slim-bookworm@sha256: 0.0s\n", + "\u001b[0m\u001b[34m => => resolve docker.io/library/python:3.12-slim-bookworm@sha256:8582432 0.0s\n", + "\u001b[0m\u001b[34m => [internal] load build context 0.0s\n", + "\u001b[0m\u001b[34m => => transferring context: 378.39kB 0.0s\n", + "\u001b[0m\u001b[34m => [2/8] RUN apt-get update && apt-get install -y g++ m 87.3s\n", + "\u001b[0m\u001b[34m => [3/8] RUN mkdir -p /function 2.3s\n", + "\u001b[0m\u001b[34m => [4/8] RUN pip install --upgrade --ignore-installed pip wheel six set 34.4s\n", + "\u001b[0m\u001b[34m => [5/8] WORKDIR /function 0.4s\n", + "\u001b[0m\u001b[34m => [6/8] COPY lithops_lambda.zip /function 0.0s\n", + "\u001b[0m\u001b[34m => [7/8] RUN unzip lithops_lambda.zip && rm lithops_lambda.zip & 0.6s\n", + "\u001b[0m\u001b[34m => [8/8] RUN pip install numpy>=2.0.0 universal-pathlib num 41.3s\n", + "\u001b[0m\u001b[34m => exporting to image 53.3s\n", + "\u001b[0m\u001b[34m => => exporting layers 53.2s\n", + "\u001b[0m\u001b[34m => => exporting manifest sha256:1e4c7966c32eec1de26d8bba2ee74edbdb7410f2 0.0s\n", + "\u001b[0m\u001b[34m => => exporting config sha256:91f568a2f3ba40d747fdd4dc422ff1295b16292b4b 0.0s\n", + "\u001b[0m\u001b[34m => => naming to docker.io/library/virtualizarr-runtime:latest 0.0s\n", + "\u001b[0m\u001b[?25h2025-04-22 14:59:41,363 [DEBUG] aws_lambda.py:372 -- Repository lithops_v361dev0_r2ie/virtualizarr-runtime already exists\n", + "2025-04-22 14:59:41,363 [DEBUG] aws_lambda.py:375 -- Pushing runtime 202533535508.dkr.ecr.us-west-2.amazonaws.com/lithops_v361dev0_r2ie/virtualizarr-runtime:latest to AWS container registry\n", + "The push refers to repository [202533535508.dkr.ecr.us-west-2.amazonaws.com/lithops_v361dev0_r2ie/virtualizarr-runtime]\n", + "\n", + "\u001b[1B5ec7fcbc: Waiting \n", + "\u001b[1Bbe7a005f: Waiting \n", + "\u001b[1B8cdd7ccc: Waiting \n", + "\u001b[1Bf30c6749: Waiting \n", + "\u001b[1Bd7956e3c: Waiting \n", + "\u001b[1Bb700ef54: Waiting \n", + "\u001b[1B3caa3f80: Waiting \n", + "\u001b[1Bebaa36cc: Waiting \n", + "\u001b[1Bea0c5f39: Waiting \n", + "\u001b[1B951a45d1: Waiting \n", + "\u001b[11Bec7fcbc: Pushing 148.9MB/295.5MBK\u001b[8A\u001b[2K\u001b[11A\u001b[2K\u001b[10A\u001b[2K\u001b[11A\u001b[2K\u001b[7A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[1A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[3A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[5A\u001b[2KPushing 41.94MB/167.4MB\u001b[11A\u001b[2KPushing 27.26MB/295.5MB\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[5A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2KPushing 48.23MB/295.5MB\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[4A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2K\u001b[11A\u001b[2Kunexpected EOF\n", + "Traceback (most recent call last):\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/bin/lithops\", line 33, in \n", + " sys.exit(load_entry_point('lithops', 'console_scripts', 'lithops')())\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 1161, in __call__\n", + " return self.main(*args, **kwargs)\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 1082, in main\n", + " rv = self.invoke(ctx)\n", + " ^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 1697, in invoke\n", + " return _process_result(sub_ctx.command.invoke(sub_ctx))\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 1697, in invoke\n", + " return _process_result(sub_ctx.command.invoke(sub_ctx))\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 1443, in invoke\n", + " return ctx.invoke(self.callback, **ctx.params)\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/core.py\", line 788, in invoke\n", + " return __callback(*args, **kwargs)\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/click/decorators.py\", line 33, in new_func\n", + " return f(get_current_context(), *args, **kwargs)\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + " File \"/Users/tom/Documents/Work/Code/lithops/lithops/scripts/cli.py\", line 486, in build\n", + " compute_handler.build_runtime(runtime_name, file, ctx.args)\n", + " File \"/Users/tom/Documents/Work/Code/lithops/lithops/serverless/serverless.py\", line 77, in build_runtime\n", + " self.backend.build_runtime(runtime_name, file, extra_args)\n", + " File \"/Users/tom/Documents/Work/Code/lithops/lithops/serverless/backends/aws_lambda/aws_lambda.py\", line 382, in build_runtime\n", + " utils.run_command(cmd)\n", + " File \"/Users/tom/Documents/Work/Code/lithops/lithops/utils.py\", line 729, in run_command\n", + " sp.check_call(cmd.split(), **kwargs)\n", + " File \"/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/subprocess.py\", line 413, in check_call\n", + " raise CalledProcessError(retcode, cmd)\n", + "subprocess.CalledProcessError: Command '['/usr/local/bin/docker', 'push', '202533535508.dkr.ecr.us-west-2.amazonaws.com/lithops_v361dev0_r2ie/virtualizarr-runtime:latest']' returned non-zero exit status 1.\n" + ] + } + ], + "source": [ + "!lithops runtime build -b aws_lambda -f /Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/Dockerfile virtualizarr-runtime" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2025-04-22 15:00:42,683 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-22 15:00:42,683 [DEBUG] config.py:101 -- Loading configuration from /Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config\n", + "2025-04-22 15:00:42,696 [DEBUG] config.py:179 -- Loading Serverless backend module: aws_lambda\n", + "2025-04-22 15:00:42,762 [DEBUG] config.py:219 -- Loading Storage backend module: aws_s3\n", + "2025-04-22 15:00:42,763 [DEBUG] aws_s3.py:36 -- Creating AWS S3 Client\n", + "2025-04-22 15:00:42,867 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-22 15:00:43,258 [DEBUG] aws_lambda.py:53 -- Creating AWS Lambda client\n", + "2025-04-22 15:00:43,482 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-22 15:00:43,483 [INFO] aws_lambda.py:450 -- Deploying runtime: virtualizarr-runtime - Memory: 1000 Timeout: 300\n", + "2025-04-22 15:01:10,015 [DEBUG] aws_lambda.py:155 -- \"lithops-worker-r2ie-361dev0-a857601c4a\" function is being deployed... (status: Pending)\n", + "2025-04-22 15:01:10,150 [DEBUG] aws_lambda.py:165 -- Ok --> function \"lithops-worker-r2ie-361dev0-a857601c4a\" is active\n", + "2025-04-22 15:01:10,150 [DEBUG] aws_lambda.py:519 -- OK --> Created lambda function lithops-worker-r2ie-361dev0-a857601c4a\n", + "2025-04-22 15:01:10,150 [DEBUG] aws_lambda.py:703 -- Extracting runtime metadata from: virtualizarr-runtime\n", + "2025-04-22 15:01:11,419 [DEBUG] storage.py:520 -- Uploading runtime metadata to: aws_s3://lithops-us-west-2-r2ie/lithops.runtimes/aws_lambda/3.6.1.dev0/us-west-2/lithops-worker-r2ie-361dev0-a857601c4a.meta.json\n", + "2025-04-22 15:01:11,873 [DEBUG] aws_s3.py:113 -- PUT Object lithops.runtimes/aws_lambda/3.6.1.dev0/us-west-2/lithops-worker-r2ie-361dev0-a857601c4a.meta.json - Size: 6.8KiB - OK\n", + "2025-04-22 15:01:11,873 [DEBUG] storage.py:526 -- Storing runtime metadata into local cache: /Users/tom/.lithops/cache/lithops.runtimes/aws_lambda/3.6.1.dev0/us-west-2/lithops-worker-r2ie-361dev0-a857601c4a.meta.json\n", + "2025-04-22 15:01:11,877 [INFO] cli.py:527 -- Runtime deployed\n" + ] + } + ], + "source": [ + "!lithops runtime deploy -b aws_lambda virtualizarr-runtime" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-04-22 15:06:32,389 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-22 15:06:32,491 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-22 15:06:33,064 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-22 15:06:33,066 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-22 15:06:33,119 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-22 15:06:33,576 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-22 15:06:33,578 [INFO] invokers.py:119 -- ExecutorID 78db0b-1 | JobID M000 - Selected Runtime: virtualizarr-runtime - 1000MB\n", + "2025-04-22 15:06:33,767 [INFO] invokers.py:186 -- ExecutorID 78db0b-1 | JobID M000 - Starting function invocation: _open() - Total: 2 activations\n", + "2025-04-22 15:06:33,769 [INFO] invokers.py:225 -- ExecutorID 78db0b-1 | JobID M000 - View execution logs at /private/var/folders/6x/yyxxlhtd3db164lh5zgfhgp80000gn/T/lithops-tom/logs/78db0b-1-M000.log\n", + "2025-04-22 15:06:33,770 [INFO] executors.py:494 -- ExecutorID 78db0b-1 - Getting results from 2 function activations\n", + "2025-04-22 15:06:33,770 [INFO] wait.py:101 -- ExecutorID 78db0b-1 - Waiting for 2 function activations to complete\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "669c61f7f9484d8398270dd14782e1e0", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + " 0%| | 0/2 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-04-22 15:07:00,917 [WARNING] future.py:254 -- ExecutorID 78db0b-1 | JobID M000 - CallID: 00000 - There was an exception - Activation ID: ae10bc3e-caa3-4e01-b61c-fe6554a6c545 - KeyError\n", + "2025-04-22 15:07:00,920 [WARNING] future.py:254 -- ExecutorID 78db0b-1 | JobID M000 - CallID: 00001 - There was an exception - Activation ID: ff5731b1-52b0-428b-aee0-fd595ab53c70 - KeyError\n", + "2025-04-22 15:07:00,921 [INFO] executors.py:618 -- ExecutorID 78db0b-1 - Cleaning temporary data\n" + ] + }, + { + "ename": "KeyError", + "evalue": "'x-amz-bucket-region'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:351\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 347\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 348\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 349\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[1;32m 350\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[0;32m--> 351\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 352\u001b[0m open_func,\n\u001b[1;32m 353\u001b[0m paths1d,\n\u001b[1;32m 354\u001b[0m )\n\u001b[1;32m 355\u001b[0m )\n\u001b[1;32m 357\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 358\u001b[0m \n\u001b[1;32m 359\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/parallel.py:310\u001b[0m, in \u001b[0;36mLithopsEagerFunctionExecutor.map\u001b[0;34m(self, fn, timeout, chunksize, *iterables)\u001b[0m\n\u001b[1;32m 307\u001b[0m fexec \u001b[38;5;241m=\u001b[39m lithops\u001b[38;5;241m.\u001b[39mFunctionExecutor()\n\u001b[1;32m 309\u001b[0m futures \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mmap(fn, \u001b[38;5;241m*\u001b[39miterables)\n\u001b[0;32m--> 310\u001b[0m results \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mget_result(futures)\n\u001b[1;32m 312\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m results\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:499\u001b[0m, in \u001b[0;36mFunctionExecutor.get_result\u001b[0;34m(self, fs, throw_except, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 491\u001b[0m pending_to_read \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(fs) \u001b[38;5;28;01mif\u001b[39;00m fs \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(\n\u001b[1;32m 492\u001b[0m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfutures \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39m_read \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39mfutures])\n\u001b[1;32m 494\u001b[0m logger\u001b[38;5;241m.\u001b[39minfo(\n\u001b[1;32m 495\u001b[0m (\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mExecutorID \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mexecutor_id\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m - Getting results from \u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 496\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpending_to_read\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m function activations\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 497\u001b[0m )\n\u001b[0;32m--> 499\u001b[0m fs_done, _ \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mwait(\n\u001b[1;32m 500\u001b[0m fs\u001b[38;5;241m=\u001b[39mfs,\n\u001b[1;32m 501\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 502\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 503\u001b[0m download_results\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 504\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size,\n\u001b[1;32m 505\u001b[0m wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec,\n\u001b[1;32m 506\u001b[0m show_progressbar\u001b[38;5;241m=\u001b[39mshow_progressbar\n\u001b[1;32m 507\u001b[0m )\n\u001b[1;32m 509\u001b[0m result \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 510\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m fs_done \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39mfutures \u001b[38;5;129;01mand\u001b[39;00m f\u001b[38;5;241m.\u001b[39m_produce_output]:\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:459\u001b[0m, in \u001b[0;36mFunctionExecutor.wait\u001b[0;34m(self, fs, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 457\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcompute_handler\u001b[38;5;241m.\u001b[39mclear(present_jobs, exception\u001b[38;5;241m=\u001b[39me)\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mclean(clean_cloudobjects\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, force\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[0;32m--> 459\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 461\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m download_results:\n\u001b[1;32m 462\u001b[0m fs_done \u001b[38;5;241m=\u001b[39m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m futures \u001b[38;5;28;01mif\u001b[39;00m f\u001b[38;5;241m.\u001b[39mdone]\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:434\u001b[0m, in \u001b[0;36mFunctionExecutor.wait\u001b[0;34m(self, fs, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 431\u001b[0m futures \u001b[38;5;241m=\u001b[39m [futures]\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 434\u001b[0m wait(fs\u001b[38;5;241m=\u001b[39mfutures,\n\u001b[1;32m 435\u001b[0m internal_storage\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39minternal_storage,\n\u001b[1;32m 436\u001b[0m job_monitor\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mjob_monitor,\n\u001b[1;32m 437\u001b[0m download_results\u001b[38;5;241m=\u001b[39mdownload_results,\n\u001b[1;32m 438\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 439\u001b[0m return_when\u001b[38;5;241m=\u001b[39mreturn_when,\n\u001b[1;32m 440\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 441\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size,\n\u001b[1;32m 442\u001b[0m wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec,\n\u001b[1;32m 443\u001b[0m show_progressbar\u001b[38;5;241m=\u001b[39mshow_progressbar,\n\u001b[1;32m 444\u001b[0m futures_from_executor_wait\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m \u001b[38;5;28;01mif\u001b[39;00m fs \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[1;32m 446\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdata_cleaner \u001b[38;5;129;01mand\u001b[39;00m return_when \u001b[38;5;241m==\u001b[39m ALL_COMPLETED:\n\u001b[1;32m 447\u001b[0m present_jobs \u001b[38;5;241m=\u001b[39m {f\u001b[38;5;241m.\u001b[39mjob_key \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m futures}\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:165\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(fs, internal_storage, job_monitor, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar, futures_from_executor_wait)\u001b[0m\n\u001b[1;32m 162\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m--> 165\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 167\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 168\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_unix_system():\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:146\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(fs, internal_storage, job_monitor, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar, futures_from_executor_wait)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m _check_done(fs, return_when, download_results):\n\u001b[1;32m 145\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m executor_data \u001b[38;5;129;01min\u001b[39;00m executors_data:\n\u001b[0;32m--> 146\u001b[0m new_data \u001b[38;5;241m=\u001b[39m _get_executor_data(fs, executor_data, pbar\u001b[38;5;241m=\u001b[39mpbar,\n\u001b[1;32m 147\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 148\u001b[0m download_results\u001b[38;5;241m=\u001b[39mdownload_results,\n\u001b[1;32m 149\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size)\n\u001b[1;32m 150\u001b[0m time\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m new_data \u001b[38;5;28;01melse\u001b[39;00m sleep_sec)\n\u001b[1;32m 152\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyboardInterrupt\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:294\u001b[0m, in \u001b[0;36m_get_executor_data\u001b[0;34m(fs, exec_data, download_results, throw_except, threadpool_size, pbar)\u001b[0m\n\u001b[1;32m 292\u001b[0m pool \u001b[38;5;241m=\u001b[39m cf\u001b[38;5;241m.\u001b[39mThreadPoolExecutor(max_workers\u001b[38;5;241m=\u001b[39mthreadpool_size)\n\u001b[1;32m 293\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m download_results:\n\u001b[0;32m--> 294\u001b[0m \u001b[38;5;28mlist\u001b[39m(pool\u001b[38;5;241m.\u001b[39mmap(get_result, fs_to_wait_on))\n\u001b[1;32m 295\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 296\u001b[0m \u001b[38;5;28mlist\u001b[39m(pool\u001b[38;5;241m.\u001b[39mmap(get_status, fs_to_wait_on))\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:619\u001b[0m, in \u001b[0;36mExecutor.map..result_iterator\u001b[0;34m()\u001b[0m\n\u001b[1;32m 616\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m fs:\n\u001b[1;32m 617\u001b[0m \u001b[38;5;66;03m# Careful not to keep a reference to the popped future\u001b[39;00m\n\u001b[1;32m 618\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m timeout \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 619\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m _result_or_cancel(fs\u001b[38;5;241m.\u001b[39mpop())\n\u001b[1;32m 620\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 621\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m _result_or_cancel(fs\u001b[38;5;241m.\u001b[39mpop(), end_time \u001b[38;5;241m-\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic())\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:317\u001b[0m, in \u001b[0;36m_result_or_cancel\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 315\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 316\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 317\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m fut\u001b[38;5;241m.\u001b[39mresult(timeout)\n\u001b[1;32m 318\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 319\u001b[0m fut\u001b[38;5;241m.\u001b[39mcancel()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:456\u001b[0m, in \u001b[0;36mFuture.result\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 454\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m CancelledError()\n\u001b[1;32m 455\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_state \u001b[38;5;241m==\u001b[39m FINISHED:\n\u001b[0;32m--> 456\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m__get_result()\n\u001b[1;32m 457\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTimeoutError\u001b[39;00m()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:401\u001b[0m, in \u001b[0;36mFuture.__get_result\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 399\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception:\n\u001b[1;32m 400\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 401\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception\n\u001b[1;32m 402\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 403\u001b[0m \u001b[38;5;66;03m# Break a reference cycle with the exception in self._exception\u001b[39;00m\n\u001b[1;32m 404\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/thread.py:58\u001b[0m, in \u001b[0;36m_WorkItem.run\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 55\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 58\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfn(\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkwargs)\n\u001b[1;32m 59\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mBaseException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc:\n\u001b[1;32m 60\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfuture\u001b[38;5;241m.\u001b[39mset_exception(exc)\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:287\u001b[0m, in \u001b[0;36m_get_executor_data..get_result\u001b[0;34m(f)\u001b[0m\n\u001b[1;32m 286\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_result\u001b[39m(f):\n\u001b[0;32m--> 287\u001b[0m f\u001b[38;5;241m.\u001b[39mresult(throw_except\u001b[38;5;241m=\u001b[39mthrow_except, internal_storage\u001b[38;5;241m=\u001b[39mexec_data\u001b[38;5;241m.\u001b[39minternal_storage)\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/future.py:319\u001b[0m, in \u001b[0;36mResponseFuture.result\u001b[0;34m(self, throw_except, internal_storage, retries, wait_dur_sec)\u001b[0m\n\u001b[1;32m 316\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdone \u001b[38;5;129;01mand\u001b[39;00m internal_storage \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 317\u001b[0m internal_storage \u001b[38;5;241m=\u001b[39m InternalStorage(storage_config\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_storage_config)\n\u001b[0;32m--> 319\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstatus(throw_except\u001b[38;5;241m=\u001b[39mthrow_except, internal_storage\u001b[38;5;241m=\u001b[39minternal_storage, wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec)\n\u001b[1;32m 321\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfutures:\n\u001b[1;32m 322\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call_output \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_new_futures\n", + "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/future.py:271\u001b[0m, in \u001b[0;36mResponseFuture.status\u001b[0;34m(self, throw_except, internal_storage, check_only, wait_dur_sec)\u001b[0m\n\u001b[1;32m 269\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m throw_except:\n\u001b[1;32m 270\u001b[0m sys\u001b[38;5;241m.\u001b[39mexcepthook \u001b[38;5;241m=\u001b[39m exception_hook\n\u001b[0;32m--> 271\u001b[0m reraise(\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception)\n\u001b[1;32m 272\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 273\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/six.py:724\u001b[0m, in \u001b[0;36mreraise\u001b[0;34m(tp, value, tb)\u001b[0m\n\u001b[1;32m 722\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m value\u001b[38;5;241m.\u001b[39m__traceback__ \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m tb:\n\u001b[1;32m 723\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m value\u001b[38;5;241m.\u001b[39mwith_traceback(tb)\n\u001b[0;32m--> 724\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m value\n\u001b[1;32m 725\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 726\u001b[0m value \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n", + "File \u001b[0;32m/function/lithops/worker/jobrunner.py:237\u001b[0m, in \u001b[0;36mrun\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:343\u001b[0m, in \u001b[0;36m_open\u001b[0;34m()\u001b[0m\n\u001b[1;32m 342\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_open\u001b[39m(path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m xr\u001b[38;5;241m.\u001b[39mDataset:\n\u001b[0;32m--> 343\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m open_virtual_dataset(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36m_create_manifest_store\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/manifests/store.py:134\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/requests/structures.py:52\u001b[0m, in \u001b[0;36m__getitem__\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: 'x-amz-bucket-region'" + ] + } + ], + "source": [ + "%%time\n", + "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", + " single_simulation_urls[0:2],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs},\n", + " parallel='lithops',\n", + ")\n", + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "%%time\n", + "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", + " single_simulation_urls[0:1],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs},\n", + " parallel='lithops',\n", + ")\n", + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "lithops-coiled", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From f1868e8e88756fa8223aaa76a635a88fdffbd101 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 19:18:14 +0000 Subject: [PATCH 06/10] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/oae/Dockerfile | 6 +-- examples/oae/README.md | 2 +- examples/oae/mvp.ipynb | 114 +++++++++++++++++++++------------------- 3 files changed, 65 insertions(+), 57 deletions(-) diff --git a/examples/oae/Dockerfile b/examples/oae/Dockerfile index bda8d6ba..0ca744ff 100644 --- a/examples/oae/Dockerfile +++ b/examples/oae/Dockerfile @@ -21,7 +21,7 @@ RUN mkdir -p ${FUNCTION_DIR} # Update pip RUN pip install --upgrade --ignore-installed pip wheel six setuptools \ && pip install --upgrade --no-cache-dir --ignore-installed \ - awslambdaric \ + awslambdaric \ boto3 \ redis \ httplib2 \ @@ -67,7 +67,7 @@ RUN pip install \ imagecodecs-numcodecs==2024.6.1 \ obstore>=0.5.1 \ git+https://github.com/zarr-developers/VirtualiZarr.git@develop - + # Entry point configuration for AWS Lambda ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ] -CMD [ "handler.entry_point.lambda_handler" ] \ No newline at end of file +CMD [ "handler.entry_point.lambda_handler" ] diff --git a/examples/oae/README.md b/examples/oae/README.md index b09b0c6d..f8e57e32 100644 --- a/examples/oae/README.md +++ b/examples/oae/README.md @@ -1,6 +1,6 @@ ## Docker -Build the runtime with +Build the runtime with ```bash lithops runtime build -b aws_lambda -f ./docker/Dockerfile virtualizarr-runtime diff --git a/examples/oae/mvp.ipynb b/examples/oae/mvp.ipynb index 626cbcde..56561b3f 100644 --- a/examples/oae/mvp.ipynb +++ b/examples/oae/mvp.ipynb @@ -97,6 +97,7 @@ ], "source": [ "import xarray as xr\n", + "\n", "xr.__version__" ] }, @@ -115,7 +116,6 @@ "metadata": {}, "outputs": [], "source": [ - "import glob\n", "import os" ] }, @@ -137,6 +137,7 @@ ], "source": [ "import virtualizarr as vz\n", + "\n", "vz.__version__" ] }, @@ -158,6 +159,7 @@ ], "source": [ "import zarr\n", + "\n", "zarr.__version__" ] }, @@ -167,7 +169,7 @@ "metadata": {}, "outputs": [], "source": [ - "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" + "bucket_url = \"s3://cworthy/oae-efficiency-atlas/\"" ] }, { @@ -176,7 +178,9 @@ "metadata": {}, "outputs": [], "source": [ - "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + "single_file_url = (\n", + " bucket_url + \"data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\"\n", + ")" ] }, { @@ -185,7 +189,7 @@ "metadata": {}, "outputs": [], "source": [ - "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" + "s3fs_kwargs = {\"anon\": True, \"endpoint_url\": \"https://data.source.coop\"}" ] }, { @@ -203,7 +207,7 @@ "metadata": {}, "outputs": [], "source": [ - "single_simulation_path = bucket_url + 'data/experiments/000/01/'" + "single_simulation_path = bucket_url + \"data/experiments/000/01/\"" ] }, { @@ -233,7 +237,7 @@ ], "source": [ "single_simulation_paths = fs.ls(single_simulation_path)\n", - "single_simulation_urls = ['s3://' + path for path in single_simulation_paths]\n", + "single_simulation_urls = [\"s3://\" + path for path in single_simulation_paths]\n", "single_simulation_urls[0:10]" ] }, @@ -243,7 +247,9 @@ "metadata": {}, "outputs": [], "source": [ - "os.environ['LITHOPS_CONFIG_FILE'] = '/Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config'" + "os.environ[\"LITHOPS_CONFIG_FILE\"] = (\n", + " \"/Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config\"\n", + ")" ] }, { @@ -254,52 +260,52 @@ "source": [ "# needed to do combine_by_coords, and each has only one value on each dataset\n", "ENSEMBLE_DIMENSION_COORDS = [\n", - " 'elapsed_time',\n", - " 'polygon_id',\n", - " 'injection_date',\n", + " \"elapsed_time\",\n", + " \"polygon_id\",\n", + " \"injection_date\",\n", "]\n", "OTHER_DIMENSION_COORDS = [\n", - " 'time_bounds',\n", - " 'z_t',\n", - " 'z_w',\n", - " 'z_t_150m',\n", - " 'z_w_bot',\n", - " 'z_w_top',\n", + " \"time_bounds\",\n", + " \"z_t\",\n", + " \"z_w\",\n", + " \"z_t_150m\",\n", + " \"z_w_bot\",\n", + " \"z_w_top\",\n", "]\n", "# so tiny it takes less memory to store their values than to store references to them\n", "SCALARS = [\n", - " 'T0_Kelvin',\n", - " 'cp_air',\n", - " 'cp_sw',\n", - " 'days_in_norm_year',\n", - " 'fwflux_factor',\n", - " 'grav',\n", - " 'heat_to_PW',\n", - " 'hflux_factor',\n", - " 'latent_heat_fusion',\n", - " 'latent_heat_fusion_mks',\n", - " 'latent_heat_vapor',\n", - " 'mass_to_Sv',\n", - " 'momentum_factor',\n", - " 'nsurface_t',\n", - " 'nsurface_u',\n", - " 'ocn_ref_salinity',\n", - " 'omega',\n", - " 'ppt_to_salt',\n", - " 'radius',\n", - " 'rho_air',\n", - " 'rho_fw',\n", - " 'salinity_factor',\n", - " 'salt_to_Svppt',\n", - " 'salt_to_mmday',\n", - " 'salt_to_ppt',\n", - " 'sea_ice_salinity',\n", - " 'sflux_factor',\n", - " 'sound',\n", - " 'vonkar',\n", - " 'stefan_boltzmann'\n", + " \"T0_Kelvin\",\n", + " \"cp_air\",\n", + " \"cp_sw\",\n", + " \"days_in_norm_year\",\n", + " \"fwflux_factor\",\n", + " \"grav\",\n", + " \"heat_to_PW\",\n", + " \"hflux_factor\",\n", + " \"latent_heat_fusion\",\n", + " \"latent_heat_fusion_mks\",\n", + " \"latent_heat_vapor\",\n", + " \"mass_to_Sv\",\n", + " \"momentum_factor\",\n", + " \"nsurface_t\",\n", + " \"nsurface_u\",\n", + " \"ocn_ref_salinity\",\n", + " \"omega\",\n", + " \"ppt_to_salt\",\n", + " \"radius\",\n", + " \"rho_air\",\n", + " \"rho_fw\",\n", + " \"salinity_factor\",\n", + " \"salt_to_Svppt\",\n", + " \"salt_to_mmday\",\n", + " \"salt_to_ppt\",\n", + " \"sea_ice_salinity\",\n", + " \"sflux_factor\",\n", + " \"sound\",\n", + " \"vonkar\",\n", + " \"stefan_boltzmann\",\n", "]\n", - "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS+ SCALARS" + "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS + SCALARS" ] }, { @@ -28271,11 +28277,12 @@ "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", " single_simulation_urls[0:2],\n", " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", + " coords=\"minimal\",\n", + " compat=\"override\",\n", " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", - " reader_options={'storage_options': s3fs_kwargs},\n", - " parallel='lithops',\n", + " reader_options={\"storage_options\": s3fs_kwargs},\n", + " parallel=\"lithops\",\n", ")\n", "combined_vds_single_simulation" ] @@ -28290,11 +28297,12 @@ "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", " single_simulation_urls[0:1],\n", " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", + " coords=\"minimal\",\n", + " compat=\"override\",\n", " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", - " reader_options={'storage_options': s3fs_kwargs},\n", - " parallel='lithops',\n", + " reader_options={\"storage_options\": s3fs_kwargs},\n", + " parallel=\"lithops\",\n", ")\n", "combined_vds_single_simulation" ] From 66dac95099147dcd4e5f910ebff2f61d24042bd4 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Tue, 22 Apr 2025 17:09:14 -0400 Subject: [PATCH 07/10] debugging --- examples/oae/mvp.ipynb | 1215 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 1212 insertions(+), 3 deletions(-) diff --git a/examples/oae/mvp.ipynb b/examples/oae/mvp.ipynb index 626cbcde..11c09279 100644 --- a/examples/oae/mvp.ipynb +++ b/examples/oae/mvp.ipynb @@ -28282,9 +28282,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "KeyError", + "evalue": "'x-amz-bucket-region'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:350\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 347\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 348\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 349\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[0;32m--> 350\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[1;32m 351\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 352\u001b[0m open_func,\n\u001b[1;32m 353\u001b[0m paths1d,\n\u001b[1;32m 354\u001b[0m )\n\u001b[1;32m 355\u001b[0m )\n\u001b[1;32m 357\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 358\u001b[0m \n\u001b[1;32m 359\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:343\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset.._open\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 342\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_open\u001b[39m(path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m xr\u001b[38;5;241m.\u001b[39mDataset:\n\u001b[0;32m--> 343\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m open_virtual_dataset(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 170\u001b[0m \u001b[38;5;129m@staticmethod\u001b[39m\n\u001b[1;32m 171\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_create_manifest_store\u001b[39m(\n\u001b[1;32m 172\u001b[0m filepath: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 177\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m ManifestStore:\n\u001b[1;32m 178\u001b[0m \u001b[38;5;66;03m# Create a group containing dataset level metadata and all the manifest arrays\u001b[39;00m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[0;32m--> 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[1;32m 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m(filepath)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124ms3\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 145\u001b[0m bucket \u001b[38;5;241m=\u001b[39m parsed\u001b[38;5;241m.\u001b[39mnetloc\n\u001b[1;32m 146\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m obs\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mS3Store(\n\u001b[1;32m 147\u001b[0m bucket\u001b[38;5;241m=\u001b[39mbucket,\n\u001b[1;32m 148\u001b[0m client_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_http\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m},\n\u001b[1;32m 149\u001b[0m skip_signature\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 150\u001b[0m virtual_hosted_style_request\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[0;32m--> 151\u001b[0m region\u001b[38;5;241m=\u001b[39m_find_bucket_region(bucket),\n\u001b[1;32m 152\u001b[0m )\n\u001b[1;32m 153\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;129;01min\u001b[39;00m [\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 154\u001b[0m base_url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mscheme\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mnetloc\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:134\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m(bucket_name)\u001b[0m\n\u001b[1;32m 131\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[1;32m 133\u001b[0m resp \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mhead(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mbucket_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.s3.amazonaws.com\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 134\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\u001b[38;5;241m.\u001b[39mheaders[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mx-amz-bucket-region\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/structures.py:52\u001b[0m, in \u001b[0;36mCaseInsensitiveDict.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 51\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m__getitem__\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[0;32m---> 52\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_store[key\u001b[38;5;241m.\u001b[39mlower()][\u001b[38;5;241m1\u001b[39m]\n", + "\u001b[0;31mKeyError\u001b[0m: 'x-amz-bucket-region'" + ] + } + ], "source": [ "%%time\n", "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", @@ -28294,11 +28314,1200 @@ " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", " reader_options={'storage_options': s3fs_kwargs},\n", - " parallel='lithops',\n", + " #parallel='lithops',\n", ")\n", "combined_vds_single_simulation" ] }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting obstore\n", + " Downloading obstore-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.2 kB)\n", + "Downloading obstore-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.3/3.3 MB\u001b[0m \u001b[31m29.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: obstore\n", + "Successfully installed obstore-0.6.0\n" + ] + } + ], + "source": [ + "!pip install obstore" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "ename": "SSLError", + "evalue": "HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mSSLCertVerificationError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:464\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[0;34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 463\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 464\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_validate_conn(conn)\n\u001b[1;32m 465\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (SocketTimeout, BaseSSLError) \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:1093\u001b[0m, in \u001b[0;36mHTTPSConnectionPool._validate_conn\u001b[0;34m(self, conn)\u001b[0m\n\u001b[1;32m 1092\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m conn\u001b[38;5;241m.\u001b[39mis_closed:\n\u001b[0;32m-> 1093\u001b[0m conn\u001b[38;5;241m.\u001b[39mconnect()\n\u001b[1;32m 1095\u001b[0m \u001b[38;5;66;03m# TODO revise this, see https://github.com/urllib3/urllib3/issues/2791\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connection.py:741\u001b[0m, in \u001b[0;36mHTTPSConnection.connect\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 739\u001b[0m server_hostname_rm_dot \u001b[38;5;241m=\u001b[39m server_hostname\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m.\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 741\u001b[0m sock_and_verified \u001b[38;5;241m=\u001b[39m _ssl_wrap_socket_and_match_hostname(\n\u001b[1;32m 742\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 743\u001b[0m cert_reqs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcert_reqs,\n\u001b[1;32m 744\u001b[0m ssl_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_version,\n\u001b[1;32m 745\u001b[0m ssl_minimum_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_minimum_version,\n\u001b[1;32m 746\u001b[0m ssl_maximum_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_maximum_version,\n\u001b[1;32m 747\u001b[0m ca_certs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_certs,\n\u001b[1;32m 748\u001b[0m ca_cert_dir\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_cert_dir,\n\u001b[1;32m 749\u001b[0m ca_cert_data\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_cert_data,\n\u001b[1;32m 750\u001b[0m cert_file\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcert_file,\n\u001b[1;32m 751\u001b[0m key_file\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey_file,\n\u001b[1;32m 752\u001b[0m key_password\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey_password,\n\u001b[1;32m 753\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname_rm_dot,\n\u001b[1;32m 754\u001b[0m ssl_context\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_context,\n\u001b[1;32m 755\u001b[0m tls_in_tls\u001b[38;5;241m=\u001b[39mtls_in_tls,\n\u001b[1;32m 756\u001b[0m assert_hostname\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39massert_hostname,\n\u001b[1;32m 757\u001b[0m assert_fingerprint\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39massert_fingerprint,\n\u001b[1;32m 758\u001b[0m )\n\u001b[1;32m 759\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msock \u001b[38;5;241m=\u001b[39m sock_and_verified\u001b[38;5;241m.\u001b[39msocket\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connection.py:920\u001b[0m, in \u001b[0;36m_ssl_wrap_socket_and_match_hostname\u001b[0;34m(sock, cert_reqs, ssl_version, ssl_minimum_version, ssl_maximum_version, cert_file, key_file, key_password, ca_certs, ca_cert_dir, ca_cert_data, assert_hostname, assert_fingerprint, server_hostname, ssl_context, tls_in_tls)\u001b[0m\n\u001b[1;32m 918\u001b[0m server_hostname \u001b[38;5;241m=\u001b[39m normalized\n\u001b[0;32m--> 920\u001b[0m ssl_sock \u001b[38;5;241m=\u001b[39m ssl_wrap_socket(\n\u001b[1;32m 921\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 922\u001b[0m keyfile\u001b[38;5;241m=\u001b[39mkey_file,\n\u001b[1;32m 923\u001b[0m certfile\u001b[38;5;241m=\u001b[39mcert_file,\n\u001b[1;32m 924\u001b[0m key_password\u001b[38;5;241m=\u001b[39mkey_password,\n\u001b[1;32m 925\u001b[0m ca_certs\u001b[38;5;241m=\u001b[39mca_certs,\n\u001b[1;32m 926\u001b[0m ca_cert_dir\u001b[38;5;241m=\u001b[39mca_cert_dir,\n\u001b[1;32m 927\u001b[0m ca_cert_data\u001b[38;5;241m=\u001b[39mca_cert_data,\n\u001b[1;32m 928\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname,\n\u001b[1;32m 929\u001b[0m ssl_context\u001b[38;5;241m=\u001b[39mcontext,\n\u001b[1;32m 930\u001b[0m tls_in_tls\u001b[38;5;241m=\u001b[39mtls_in_tls,\n\u001b[1;32m 931\u001b[0m )\n\u001b[1;32m 933\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/ssl_.py:460\u001b[0m, in \u001b[0;36mssl_wrap_socket\u001b[0;34m(sock, keyfile, certfile, cert_reqs, ca_certs, server_hostname, ssl_version, ciphers, ssl_context, ca_cert_dir, key_password, ca_cert_data, tls_in_tls)\u001b[0m\n\u001b[1;32m 458\u001b[0m context\u001b[38;5;241m.\u001b[39mset_alpn_protocols(ALPN_PROTOCOLS)\n\u001b[0;32m--> 460\u001b[0m ssl_sock \u001b[38;5;241m=\u001b[39m _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname)\n\u001b[1;32m 461\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ssl_sock\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/ssl_.py:504\u001b[0m, in \u001b[0;36m_ssl_wrap_socket_impl\u001b[0;34m(sock, ssl_context, tls_in_tls, server_hostname)\u001b[0m\n\u001b[1;32m 502\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m SSLTransport(sock, ssl_context, server_hostname)\n\u001b[0;32m--> 504\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ssl_context\u001b[38;5;241m.\u001b[39mwrap_socket(sock, server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:455\u001b[0m, in \u001b[0;36mSSLContext.wrap_socket\u001b[0;34m(self, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, session)\u001b[0m\n\u001b[1;32m 449\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mwrap_socket\u001b[39m(\u001b[38;5;28mself\u001b[39m, sock, server_side\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 450\u001b[0m do_handshake_on_connect\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 451\u001b[0m suppress_ragged_eofs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 452\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, session\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m):\n\u001b[1;32m 453\u001b[0m \u001b[38;5;66;03m# SSLSocket class handles server_hostname encoding before it calls\u001b[39;00m\n\u001b[1;32m 454\u001b[0m \u001b[38;5;66;03m# ctx._wrap_socket()\u001b[39;00m\n\u001b[0;32m--> 455\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msslsocket_class\u001b[38;5;241m.\u001b[39m_create(\n\u001b[1;32m 456\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 457\u001b[0m server_side\u001b[38;5;241m=\u001b[39mserver_side,\n\u001b[1;32m 458\u001b[0m do_handshake_on_connect\u001b[38;5;241m=\u001b[39mdo_handshake_on_connect,\n\u001b[1;32m 459\u001b[0m suppress_ragged_eofs\u001b[38;5;241m=\u001b[39msuppress_ragged_eofs,\n\u001b[1;32m 460\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname,\n\u001b[1;32m 461\u001b[0m context\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 462\u001b[0m session\u001b[38;5;241m=\u001b[39msession\n\u001b[1;32m 463\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:1042\u001b[0m, in \u001b[0;36mSSLSocket._create\u001b[0;34m(cls, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, context, session)\u001b[0m\n\u001b[1;32m 1041\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdo_handshake_on_connect should not be specified for non-blocking sockets\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m-> 1042\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdo_handshake()\n\u001b[1;32m 1043\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:1320\u001b[0m, in \u001b[0;36mSSLSocket.do_handshake\u001b[0;34m(self, block)\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msettimeout(\u001b[38;5;28;01mNone\u001b[39;00m)\n\u001b[0;32m-> 1320\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_sslobj\u001b[38;5;241m.\u001b[39mdo_handshake()\n\u001b[1;32m 1321\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n", + "\u001b[0;31mSSLCertVerificationError\u001b[0m: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mSSLError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:787\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 786\u001b[0m \u001b[38;5;66;03m# Make the request on the HTTPConnection object\u001b[39;00m\n\u001b[0;32m--> 787\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_make_request(\n\u001b[1;32m 788\u001b[0m conn,\n\u001b[1;32m 789\u001b[0m method,\n\u001b[1;32m 790\u001b[0m url,\n\u001b[1;32m 791\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout_obj,\n\u001b[1;32m 792\u001b[0m body\u001b[38;5;241m=\u001b[39mbody,\n\u001b[1;32m 793\u001b[0m headers\u001b[38;5;241m=\u001b[39mheaders,\n\u001b[1;32m 794\u001b[0m chunked\u001b[38;5;241m=\u001b[39mchunked,\n\u001b[1;32m 795\u001b[0m retries\u001b[38;5;241m=\u001b[39mretries,\n\u001b[1;32m 796\u001b[0m response_conn\u001b[38;5;241m=\u001b[39mresponse_conn,\n\u001b[1;32m 797\u001b[0m preload_content\u001b[38;5;241m=\u001b[39mpreload_content,\n\u001b[1;32m 798\u001b[0m decode_content\u001b[38;5;241m=\u001b[39mdecode_content,\n\u001b[1;32m 799\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mresponse_kw,\n\u001b[1;32m 800\u001b[0m )\n\u001b[1;32m 802\u001b[0m \u001b[38;5;66;03m# Everything went great!\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:488\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[0;34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 487\u001b[0m new_e \u001b[38;5;241m=\u001b[39m _wrap_proxy_error(new_e, conn\u001b[38;5;241m.\u001b[39mproxy\u001b[38;5;241m.\u001b[39mscheme)\n\u001b[0;32m--> 488\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m new_e\n\u001b[1;32m 490\u001b[0m \u001b[38;5;66;03m# conn.request() calls http.client.*.request, not the method in\u001b[39;00m\n\u001b[1;32m 491\u001b[0m \u001b[38;5;66;03m# urllib3.request. It also calls makefile (recv) on the socket.\u001b[39;00m\n", + "\u001b[0;31mSSLError\u001b[0m: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mMaxRetryError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/adapters.py:667\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 666\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 667\u001b[0m resp \u001b[38;5;241m=\u001b[39m conn\u001b[38;5;241m.\u001b[39murlopen(\n\u001b[1;32m 668\u001b[0m method\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mmethod,\n\u001b[1;32m 669\u001b[0m url\u001b[38;5;241m=\u001b[39murl,\n\u001b[1;32m 670\u001b[0m body\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mbody,\n\u001b[1;32m 671\u001b[0m headers\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mheaders,\n\u001b[1;32m 672\u001b[0m redirect\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 673\u001b[0m assert_same_host\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 674\u001b[0m preload_content\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 675\u001b[0m decode_content\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 676\u001b[0m retries\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmax_retries,\n\u001b[1;32m 677\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 678\u001b[0m chunked\u001b[38;5;241m=\u001b[39mchunked,\n\u001b[1;32m 679\u001b[0m )\n\u001b[1;32m 681\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (ProtocolError, \u001b[38;5;167;01mOSError\u001b[39;00m) \u001b[38;5;28;01mas\u001b[39;00m err:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:841\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 839\u001b[0m new_e \u001b[38;5;241m=\u001b[39m ProtocolError(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mConnection aborted.\u001b[39m\u001b[38;5;124m\"\u001b[39m, new_e)\n\u001b[0;32m--> 841\u001b[0m retries \u001b[38;5;241m=\u001b[39m retries\u001b[38;5;241m.\u001b[39mincrement(\n\u001b[1;32m 842\u001b[0m method, url, error\u001b[38;5;241m=\u001b[39mnew_e, _pool\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m, _stacktrace\u001b[38;5;241m=\u001b[39msys\u001b[38;5;241m.\u001b[39mexc_info()[\u001b[38;5;241m2\u001b[39m]\n\u001b[1;32m 843\u001b[0m )\n\u001b[1;32m 844\u001b[0m retries\u001b[38;5;241m.\u001b[39msleep()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/retry.py:519\u001b[0m, in \u001b[0;36mRetry.increment\u001b[0;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[1;32m 518\u001b[0m reason \u001b[38;5;241m=\u001b[39m error \u001b[38;5;129;01mor\u001b[39;00m ResponseError(cause)\n\u001b[0;32m--> 519\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m MaxRetryError(_pool, url, reason) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mreason\u001b[39;00m \u001b[38;5;66;03m# type: ignore[arg-type]\u001b[39;00m\n\u001b[1;32m 521\u001b[0m log\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIncremented Retry for (url=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m): \u001b[39m\u001b[38;5;132;01m%r\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, url, new_retry)\n", + "\u001b[0;31mMaxRetryError\u001b[0m: HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mSSLError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[22], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m vz\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 2\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124ms3://us-west-2.opendata.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 3\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39m[],\n\u001b[1;32m 4\u001b[0m decode_times\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 5\u001b[0m reader_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mstorage_options\u001b[39m\u001b[38;5;124m'\u001b[39m: {\u001b[38;5;124m'\u001b[39m\u001b[38;5;124manon\u001b[39m\u001b[38;5;124m'\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m}},\n\u001b[1;32m 6\u001b[0m )\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 170\u001b[0m \u001b[38;5;129m@staticmethod\u001b[39m\n\u001b[1;32m 171\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_create_manifest_store\u001b[39m(\n\u001b[1;32m 172\u001b[0m filepath: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 177\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m ManifestStore:\n\u001b[1;32m 178\u001b[0m \u001b[38;5;66;03m# Create a group containing dataset level metadata and all the manifest arrays\u001b[39;00m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[0;32m--> 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[1;32m 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m(filepath)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124ms3\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 145\u001b[0m bucket \u001b[38;5;241m=\u001b[39m parsed\u001b[38;5;241m.\u001b[39mnetloc\n\u001b[1;32m 146\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m obs\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mS3Store(\n\u001b[1;32m 147\u001b[0m bucket\u001b[38;5;241m=\u001b[39mbucket,\n\u001b[1;32m 148\u001b[0m client_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_http\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m},\n\u001b[1;32m 149\u001b[0m skip_signature\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 150\u001b[0m virtual_hosted_style_request\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[0;32m--> 151\u001b[0m region\u001b[38;5;241m=\u001b[39m_find_bucket_region(bucket),\n\u001b[1;32m 152\u001b[0m )\n\u001b[1;32m 153\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;129;01min\u001b[39;00m [\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 154\u001b[0m base_url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mscheme\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mnetloc\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:133\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m(bucket_name)\u001b[0m\n\u001b[1;32m 130\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_find_bucket_region\u001b[39m(bucket_name: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mstr\u001b[39m:\n\u001b[1;32m 131\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[0;32m--> 133\u001b[0m resp \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mhead(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mbucket_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.s3.amazonaws.com\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 134\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\u001b[38;5;241m.\u001b[39mheaders[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mx-amz-bucket-region\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/api.py:100\u001b[0m, in \u001b[0;36mhead\u001b[0;34m(url, **kwargs)\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"Sends a HEAD request.\u001b[39;00m\n\u001b[1;32m 90\u001b[0m \n\u001b[1;32m 91\u001b[0m \u001b[38;5;124;03m:param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 96\u001b[0m \u001b[38;5;124;03m:rtype: requests.Response\u001b[39;00m\n\u001b[1;32m 97\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 99\u001b[0m kwargs\u001b[38;5;241m.\u001b[39msetdefault(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m request(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhead\u001b[39m\u001b[38;5;124m\"\u001b[39m, url, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/api.py:59\u001b[0m, in \u001b[0;36mrequest\u001b[0;34m(method, url, **kwargs)\u001b[0m\n\u001b[1;32m 55\u001b[0m \u001b[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001b[39;00m\n\u001b[1;32m 56\u001b[0m \u001b[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001b[39;00m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;66;03m# cases, and look like a memory leak in others.\u001b[39;00m\n\u001b[1;32m 58\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m sessions\u001b[38;5;241m.\u001b[39mSession() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[0;32m---> 59\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m session\u001b[38;5;241m.\u001b[39mrequest(method\u001b[38;5;241m=\u001b[39mmethod, url\u001b[38;5;241m=\u001b[39murl, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/sessions.py:589\u001b[0m, in \u001b[0;36mSession.request\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 584\u001b[0m send_kwargs \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 585\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtimeout\u001b[39m\u001b[38;5;124m\"\u001b[39m: timeout,\n\u001b[1;32m 586\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m\"\u001b[39m: allow_redirects,\n\u001b[1;32m 587\u001b[0m }\n\u001b[1;32m 588\u001b[0m send_kwargs\u001b[38;5;241m.\u001b[39mupdate(settings)\n\u001b[0;32m--> 589\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msend(prep, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msend_kwargs)\n\u001b[1;32m 591\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/sessions.py:703\u001b[0m, in \u001b[0;36mSession.send\u001b[0;34m(self, request, **kwargs)\u001b[0m\n\u001b[1;32m 700\u001b[0m start \u001b[38;5;241m=\u001b[39m preferred_clock()\n\u001b[1;32m 702\u001b[0m \u001b[38;5;66;03m# Send the request\u001b[39;00m\n\u001b[0;32m--> 703\u001b[0m r \u001b[38;5;241m=\u001b[39m adapter\u001b[38;5;241m.\u001b[39msend(request, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 705\u001b[0m \u001b[38;5;66;03m# Total elapsed time of the request (approximately)\u001b[39;00m\n\u001b[1;32m 706\u001b[0m elapsed \u001b[38;5;241m=\u001b[39m preferred_clock() \u001b[38;5;241m-\u001b[39m start\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/adapters.py:698\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 694\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m ProxyError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 696\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(e\u001b[38;5;241m.\u001b[39mreason, _SSLError):\n\u001b[1;32m 697\u001b[0m \u001b[38;5;66;03m# This branch is for urllib3 v1.22 and later.\u001b[39;00m\n\u001b[0;32m--> 698\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m SSLError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 700\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 702\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ClosedPoolError \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "\u001b[0;31mSSLError\u001b[0m: HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))" + ] + } + ], + "source": [ + "vz.open_virtual_dataset(\n", + " 's3://us-west-2.opendata.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " loadable_variables=[],\n", + " decode_times=False,\n", + " reader_options={'storage_options': {'anon': True}},\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "fs = s3fs.S3FileSystem(**s3fs_kwargs)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "from virtualizarr.readers import HDF5VirtualBackend" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-04-22 15:56:18,677 - h5-to-zarr - DEBUG - __init__ -- HDF5 file: s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\n", + "2025-04-22 15:56:28,184 - h5-to-zarr - DEBUG - __init__ -- HDF5 file URI: s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\n", + "2025-04-22 15:56:28,184 - h5-to-zarr - DEBUG - translate -- Translation begins\n", + "2025-04-22 15:57:21,344 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK\n", + "2025-04-22 15:57:21,346 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:04:46,656 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:04:46,666 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:04:52,121 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_ALT_CO2\n", + "2025-04-22 16:04:52,121 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:04:52,125 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:04:52,127 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:04:52,128 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_ALT_CO2_zint_100m\n", + "2025-04-22 16:04:52,128 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:04:52,132 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:04:52,136 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:04:55,360 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_FLUX\n", + "2025-04-22 16:04:55,361 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:04:58,895 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:04:58,900 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:06,562 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_zint_100m\n", + "2025-04-22 16:05:06,563 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:06,569 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:06,572 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:11,262 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ANGLE\n", + "2025-04-22 16:05:11,263 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:11,268 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:11,270 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:05:11,271 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ANGLET\n", + "2025-04-22 16:05:11,271 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:11,274 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:11,276 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:05:19,755 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ATM_CO2\n", + "2025-04-22 16:05:19,755 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:19,760 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:19,764 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:26,810 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO2STAR\n", + "2025-04-22 16:05:26,811 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:26,817 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO2STAR_ALT_CO2\n", + "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:26,825 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:26,828 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:30,456 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO3\n", + "2025-04-22 16:05:30,456 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:30,460 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:30,462 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:05:30,463 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO3_ALT_CO2\n", + "2025-04-22 16:05:30,463 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:30,467 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:30,472 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:05:41,538 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DCO2STAR\n", + "2025-04-22 16:05:41,538 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:45,529 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:45,534 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:45,535 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DCO2STAR_ALT_CO2\n", + "2025-04-22 16:05:45,536 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:45,541 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:45,546 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:45,547 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC\n", + "2025-04-22 16:05:45,548 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:45,553 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:45,557 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:05:45,558 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_ALT_CO2\n", + "2025-04-22 16:05:45,559 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:45,563 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:45,566 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:05:45,567 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_ALT_CO2_zint_100m\n", + "2025-04-22 16:05:45,567 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:45,569 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:45,573 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:49,664 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_zint_100m\n", + "2025-04-22 16:05:49,665 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:49,669 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:49,672 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:05:58,408 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DXT\n", + "2025-04-22 16:05:58,408 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:05:58,412 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:05:58,414 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:07,253 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DXU\n", + "2025-04-22 16:06:07,254 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:07,259 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:07,263 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:07,264 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DYT\n", + "2025-04-22 16:06:07,265 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:07,269 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:07,272 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:07,273 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DYU\n", + "2025-04-22 16:06:07,274 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:07,278 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:07,282 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:17,473 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DpCO2\n", + "2025-04-22 16:06:17,474 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:17,481 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:17,484 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:21,679 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DpCO2_ALT_CO2\n", + "2025-04-22 16:06:21,680 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:21,684 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:21,687 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:21,688 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /FG_ALT_CO2\n", + "2025-04-22 16:06:21,688 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:21,691 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /FG_CO2\n", + "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:21,697 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:21,699 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:25,544 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HT\n", + "2025-04-22 16:06:25,544 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:25,548 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HTE\n", + "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:25,554 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HTN\n", + "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:25,559 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:25,560 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:29,286 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HU\n", + "2025-04-22 16:06:29,287 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:29,290 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:29,292 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:29,294 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HUS\n", + "2025-04-22 16:06:29,295 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:29,297 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:29,299 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:29,300 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HUW\n", + "2025-04-22 16:06:29,300 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:29,302 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:29,304 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:33,124 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /KMT\n", + "2025-04-22 16:06:33,124 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:33,133 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:33,135 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:33,136 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /KMU\n", + "2025-04-22 16:06:33,136 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:33,139 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:33,140 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:36,492 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /PH\n", + "2025-04-22 16:06:36,493 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:36,497 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:36,501 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:36,501 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /PH_ALT_CO2\n", + "2025-04-22 16:06:36,502 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:36,505 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:36,508 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:41,098 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /REGION_MASK\n", + "2025-04-22 16:06:41,099 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:41,102 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:41,104 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:06:44,540 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /STF_ALK\n", + "2025-04-22 16:06:44,541 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:44,545 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /STF_ALK_ALT_CO2\n", + "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:44,553 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /T0_Kelvin\n", + "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:06:44,558 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:44,559 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:06:50,719 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TAREA\n", + "2025-04-22 16:06:50,721 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:06:50,726 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:06:50,729 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:34,307 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TLAT\n", + "2025-04-22 16:07:34,308 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:07:34,313 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:34,316 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:41,764 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TLONG\n", + "2025-04-22 16:07:41,764 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:07:41,770 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:41,773 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:41,775 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /UAREA\n", + "2025-04-22 16:07:41,776 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:07:41,781 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:41,785 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:49,587 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ULAT\n", + "2025-04-22 16:07:49,588 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:07:49,593 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:49,595 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:56,236 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ULONG\n", + "2025-04-22 16:07:56,237 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:07:56,241 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:56,243 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", + "2025-04-22 16:07:56,243 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /_nc4_non_coord_time\n", + "2025-04-22 16:07:56,244 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:07:56,246 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:07:56,248 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date', 'elapsed_time']\n", + "2025-04-22 16:08:18,826 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /co3_sat_arag\n", + "2025-04-22 16:08:18,826 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:18,831 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:18,834 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:08:23,103 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /co3_sat_calc\n", + "2025-04-22 16:08:23,103 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:23,109 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /cp_air\n", + "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:23,114 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:23,115 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:23,116 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /cp_sw\n", + "2025-04-22 16:08:23,116 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:23,118 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:23,119 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:23,119 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /d2\n", + "2025-04-22 16:08:23,120 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:23,120 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /days_in_norm_year\n", + "2025-04-22 16:08:23,121 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:23,122 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:23,123 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,139 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /dz\n", + "2025-04-22 16:08:27,140 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:27,143 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,145 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t']\n", + "2025-04-22 16:08:27,146 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /dzw\n", + "2025-04-22 16:08:27,146 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:27,148 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,150 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w']\n", + "2025-04-22 16:08:27,150 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /elapsed_time\n", + "2025-04-22 16:08:27,151 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,153 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,155 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['elapsed_time']\n", + "2025-04-22 16:08:27,156 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /fwflux_factor\n", + "2025-04-22 16:08:27,156 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,157 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,158 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,159 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /grav\n", + "2025-04-22 16:08:27,159 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,160 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,161 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,161 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /heat_to_PW\n", + "2025-04-22 16:08:27,162 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,164 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,164 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,165 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /hflux_factor\n", + "2025-04-22 16:08:27,165 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,166 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /injection_date\n", + "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,169 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date']\n", + "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_fusion\n", + "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,172 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_fusion_mks\n", + "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,175 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_vapor\n", + "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,177 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /mass_to_Sv\n", + "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,180 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,180 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,181 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /momentum_factor\n", + "2025-04-22 16:08:27,181 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,182 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nlat\n", + "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,184 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nlon\n", + "2025-04-22 16:08:27,184 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,185 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nsurface_t\n", + "2025-04-22 16:08:27,185 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,186 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,186 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,187 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nsurface_u\n", + "2025-04-22 16:08:27,187 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,188 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ocn_ref_salinity\n", + "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,190 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,191 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:27,191 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /omega\n", + "2025-04-22 16:08:27,192 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:27,193 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:27,194 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:34,021 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pCO2SURF\n", + "2025-04-22 16:08:34,021 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:34,026 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:34,029 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:37,786 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pCO2SURF_ALT_CO2\n", + "2025-04-22 16:08:37,787 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:37,792 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:37,795 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:41,262 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pH_3D\n", + "2025-04-22 16:08:41,263 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:41,268 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:41,271 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:08:49,237 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pH_3D_ALT_CO2\n", + "2025-04-22 16:08:49,238 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:49,243 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,246 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", + "2025-04-22 16:08:49,247 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /polygon_id\n", + "2025-04-22 16:08:49,247 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,249 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id']\n", + "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ppt_to_salt\n", + "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,252 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,253 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,253 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /radius\n", + "2025-04-22 16:08:49,254 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,255 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_air\n", + "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,260 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,261 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,261 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_fw\n", + "2025-04-22 16:08:49,262 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,263 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,264 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,265 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_sw\n", + "2025-04-22 16:08:49,265 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,266 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,267 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,267 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salinity_factor\n", + "2025-04-22 16:08:49,268 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,269 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_Svppt\n", + "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,272 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,272 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,273 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_mmday\n", + "2025-04-22 16:08:49,273 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_ppt\n", + "2025-04-22 16:08:49,276 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,277 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,277 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,278 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sea_ice_salinity\n", + "2025-04-22 16:08:49,278 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,279 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,280 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,280 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sflux_factor\n", + "2025-04-22 16:08:49,281 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,282 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,282 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,283 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sound\n", + "2025-04-22 16:08:49,283 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,284 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /stefan_boltzmann\n", + "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:49,286 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:49,287 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:08:51,031 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_ALK\n", + "2025-04-22 16:08:51,032 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:51,036 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:51,040 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:51,041 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_ALK_ALT_CO2\n", + "2025-04-22 16:08:51,041 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:51,045 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:51,047 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:55,049 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_DIC\n", + "2025-04-22 16:08:55,049 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:55,054 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:55,058 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:55,058 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_DIC_ALT_CO2\n", + "2025-04-22 16:08:55,059 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:08:55,062 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:55,065 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", + "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /time\n", + "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /time_bound\n", + "2025-04-22 16:08:55,067 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:55,069 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:55,070 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date', 'elapsed_time', 'd2']\n", + "2025-04-22 16:08:55,071 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /vonkar\n", + "2025-04-22 16:08:55,071 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", + "2025-04-22 16:08:55,072 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:08:55,073 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", + "2025-04-22 16:09:05,482 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_t\n", + "2025-04-22 16:09:05,482 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:09:05,485 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:09:05,488 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t']\n", + "2025-04-22 16:09:05,489 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_t_150m\n", + "2025-04-22 16:09:05,489 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:09:05,491 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:09:05,493 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t_150m']\n", + "2025-04-22 16:09:05,494 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w\n", + "2025-04-22 16:09:05,494 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:09:05,496 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:09:05,498 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w']\n", + "2025-04-22 16:09:05,499 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w_bot\n", + "2025-04-22 16:09:05,499 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:09:05,501 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:09:05,503 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w_bot']\n", + "2025-04-22 16:09:05,503 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w_top\n", + "2025-04-22 16:09:05,504 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", + "2025-04-22 16:09:05,506 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", + "2025-04-22 16:09:05,508 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w_top']\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 1min 4s, sys: 38.6 s, total: 1min 43s\n", + "Wall time: 16min 56s\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 326MB\n",
+       "Dimensions:                     (polygon_id: 1, injection_date: 1,\n",
+       "                                 elapsed_time: 1, z_t: 60, nlat: 384,\n",
+       "                                 nlon: 320, z_w: 60, d2: 2, z_t_150m: 15,\n",
+       "                                 z_w_bot: 60, z_w_top: 60)\n",
+       "Coordinates: (12/63)\n",
+       "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    DXT                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    DXU                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    DYT                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    DYU                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ...                          ...\n",
+       "    vonkar                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    z_t                         (z_t) float32 240B ManifestArray<shape=(60,),...\n",
+       "    z_t_150m                    (z_t_150m) float32 60B ManifestArray<shape=(1...\n",
+       "    z_w                         (z_w) float32 240B ManifestArray<shape=(60,),...\n",
+       "    z_w_bot                     (z_w_bot) float32 240B ManifestArray<shape=(6...\n",
+       "    z_w_top                     (z_w_top) float32 240B ManifestArray<shape=(6...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    ALK                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ALK_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    ALK_FLUX                    (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    ALK_zint_100m               (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    ATM_CO2                     (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 326MB\n", + "Dimensions: (polygon_id: 1, injection_date: 1,\n", + " elapsed_time: 1, z_t: 60, nlat: 384,\n", + " nlon: 320, z_w: 60, d2: 2, z_t_150m: 15,\n", + " z_w_bot: 60, z_w_top: 60)\n", + "Coordinates: (12/63)\n", + " ANGLE (nlat, nlon) float64 983kB ManifestArray the variable values are ..." + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "vds = vz.open_virtual_dataset(\n", + " single_file_url, \n", + " loadable_variables=[],\n", + " decode_times=False,\n", + " reader_options={'storage_options': s3fs_kwargs},\n", + " backend=HDF5VirtualBackend,\n", + ")\n", + "vds" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting kerchunk\n", + " Downloading kerchunk-0.2.8-py3-none-any.whl.metadata (4.4 kB)\n", + "Requirement already satisfied: fsspec in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (2025.3.2)\n", + "Requirement already satisfied: numcodecs in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (0.16.0)\n", + "Requirement already satisfied: numpy in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (2.2.4)\n", + "Requirement already satisfied: ujson in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (5.10.0)\n", + "Requirement already satisfied: zarr>=3.0.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (3.0.6)\n", + "Requirement already satisfied: donfig>=0.8 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (0.8.1.post1)\n", + "Requirement already satisfied: packaging>=22.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (24.2)\n", + "Requirement already satisfied: typing-extensions>=4.9 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (4.13.2)\n", + "Requirement already satisfied: pyyaml in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from donfig>=0.8->zarr>=3.0.1->kerchunk) (6.0.2)\n", + "Requirement already satisfied: crc32c>=2.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from numcodecs[crc32c]>=0.14->zarr>=3.0.1->kerchunk) (2.7.1)\n", + "Downloading kerchunk-0.2.8-py3-none-any.whl (65 kB)\n", + "Installing collected packages: kerchunk\n", + "Successfully installed kerchunk-0.2.8\n" + ] + } + ], + "source": [ + "!pip install kerchunk" + ] + }, { "cell_type": "code", "execution_count": null, From 1fe30db8496f1ae27845fe2040415c8bf8463aa7 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Thu, 24 Apr 2025 14:43:34 -0400 Subject: [PATCH 08/10] use branch of numcodecs with pickleable codecs in dockerfile --- examples/oae/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/oae/Dockerfile b/examples/oae/Dockerfile index bda8d6ba..f7c5e0c6 100644 --- a/examples/oae/Dockerfile +++ b/examples/oae/Dockerfile @@ -48,11 +48,11 @@ RUN unzip lithops_lambda.zip \ && mv entry_point.py handler/ # Install packages from specific branches +# TODO numcodecs tag is a branch on my fork - required so that the Zlib codec can be pickled, see https://github.com/zarr-developers/numcodecs/issues/744 # TODO all of these could be replaced with `pip install 'virtualizarr[hdf]'` once I can use a released version RUN pip install \ numpy>=2.0.0 \ universal-pathlib \ - numcodecs>=0.15.1 \ ujson \ packaging \ zarr>=3.0.2 \ @@ -66,8 +66,9 @@ RUN pip install \ imagecodecs \ imagecodecs-numcodecs==2024.6.1 \ obstore>=0.5.1 \ - git+https://github.com/zarr-developers/VirtualiZarr.git@develop - + git+https://github.com/zarr-developers/VirtualiZarr.git@develop \ + git+https://github.com/TomNicholas/numcodecs.git@v0.16.1 + # Entry point configuration for AWS Lambda ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ] CMD [ "handler.entry_point.lambda_handler" ] \ No newline at end of file From bae19b7a4a6ba1fb5190e03887b182caec38ab09 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Thu, 24 Apr 2025 14:44:02 -0400 Subject: [PATCH 09/10] progres --- examples/oae/mvp.ipynb | 3393 ++++++++++++++++++++++++++++++---------- 1 file changed, 2556 insertions(+), 837 deletions(-) diff --git a/examples/oae/mvp.ipynb b/examples/oae/mvp.ipynb index 11c09279..8e73c27c 100644 --- a/examples/oae/mvp.ipynb +++ b/examples/oae/mvp.ipynb @@ -14,7 +14,7 @@ "Requirement already satisfied: aiobotocore in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (2.21.1)\n", "Requirement already satisfied: boto3 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (1.37.1)\n", "Collecting boto3\n", - " Using cached boto3-1.37.38-py3-none-any.whl.metadata (6.7 kB)\n", + " Using cached boto3-1.38.1-py3-none-any.whl.metadata (6.6 kB)\n", "Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from s3fs) (3.11.16)\n", "Requirement already satisfied: aioitertools<1.0.0,>=0.5.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (0.7.1)\n", "Requirement already satisfied: botocore<1.37.2,>=1.37.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.37.1)\n", @@ -23,20 +23,22 @@ "Requirement already satisfied: multidict<7.0.0,>=6.0.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (6.1.0)\n", "Requirement already satisfied: wrapt<2.0.0,>=1.10.10 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from aiobotocore) (1.17.0)\n", "INFO: pip is looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", + " Using cached boto3-1.38.0-py3-none-any.whl.metadata (6.6 kB)\n", + " Using cached boto3-1.37.38-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.37-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.36-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.35-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.34-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.33-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: pip is still looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", " Using cached boto3-1.37.32-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.31-py3-none-any.whl.metadata (6.7 kB)\n", - "INFO: pip is still looking at multiple versions of boto3 to determine which version is compatible with other requirements. This could take a while.\n", " Using cached boto3-1.37.30-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.29-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.28-py3-none-any.whl.metadata (6.7 kB)\n", + "INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.\n", " Using cached boto3-1.37.27-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.26-py3-none-any.whl.metadata (6.7 kB)\n", - "INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.\n", " Using cached boto3-1.37.25-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.24-py3-none-any.whl.metadata (6.7 kB)\n", " Using cached boto3-1.37.23-py3-none-any.whl.metadata (6.7 kB)\n", @@ -127,7 +129,7 @@ { "data": { "text/plain": [ - "'1.3.3.dev40+ge92c0ef'" + "'1.3.3.dev51+g66dac95.d20250423'" ] }, "execution_count": 5, @@ -214,16 +216,16 @@ { "data": { "text/plain": [ - "['s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-02.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-03.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-04.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-05.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-06.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-07.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-08.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-09.nc',\n", - " 's3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-10.nc']" + "['https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-02.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-03.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-04.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-05.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-06.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-07.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-08.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-09.nc',\n", + " 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-10.nc']" ] }, "execution_count": 12, @@ -233,7 +235,7 @@ ], "source": [ "single_simulation_paths = fs.ls(single_simulation_path)\n", - "single_simulation_urls = ['s3://' + path for path in single_simulation_paths]\n", + "single_simulation_urls = ['https://data.source.coop/' + path for path in single_simulation_paths]\n", "single_simulation_urls[0:10]" ] }, @@ -266,6 +268,10 @@ " 'z_w_bot',\n", " 'z_w_top',\n", "]\n", + "ONE_DIMENSIONAL_NON_DIMENSION_COORDS = [\n", + " 'dz',\n", + " 'dzw',\n", + "]\n", "# so tiny it takes less memory to store their values than to store references to them\n", "SCALARS = [\n", " 'T0_Kelvin',\n", @@ -289,6 +295,7 @@ " 'radius',\n", " 'rho_air',\n", " 'rho_fw',\n", + " 'rho_sw',\n", " 'salinity_factor',\n", " 'salt_to_Svppt',\n", " 'salt_to_mmday',\n", @@ -299,7 +306,7 @@ " 'vonkar',\n", " 'stefan_boltzmann'\n", "]\n", - "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS+ SCALARS" + "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS + ONE_DIMENSIONAL_NON_DIMENSION_COORDS + SCALARS" ] }, { @@ -28193,23 +28200,37 @@ "name": "stderr", "output_type": "stream", "text": [ - "2025-04-22 15:06:32,389 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", - "2025-04-22 15:06:32,491 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", - "2025-04-22 15:06:33,064 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", - "2025-04-22 15:06:33,066 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", - "2025-04-22 15:06:33,119 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", - "2025-04-22 15:06:33,576 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", - "2025-04-22 15:06:33,578 [INFO] invokers.py:119 -- ExecutorID 78db0b-1 | JobID M000 - Selected Runtime: virtualizarr-runtime - 1000MB\n", - "2025-04-22 15:06:33,767 [INFO] invokers.py:186 -- ExecutorID 78db0b-1 | JobID M000 - Starting function invocation: _open() - Total: 2 activations\n", - "2025-04-22 15:06:33,769 [INFO] invokers.py:225 -- ExecutorID 78db0b-1 | JobID M000 - View execution logs at /private/var/folders/6x/yyxxlhtd3db164lh5zgfhgp80000gn/T/lithops-tom/logs/78db0b-1-M000.log\n", - "2025-04-22 15:06:33,770 [INFO] executors.py:494 -- ExecutorID 78db0b-1 - Getting results from 2 function activations\n", - "2025-04-22 15:06:33,770 [INFO] wait.py:101 -- ExecutorID 78db0b-1 - Waiting for 2 function activations to complete\n" + "2025-04-24 13:43:47,204 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-24 13:43:47,302 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc', 'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-02.nc']\n", + "{'loadable_variables': ['elapsed_time', 'polygon_id', 'injection_date', 'time_bounds', 'z_t', 'z_w', 'z_t_150m', 'z_w_bot', 'z_w_top', 'dz', 'dzw', 'T0_Kelvin', 'cp_air', 'cp_sw', 'days_in_norm_year', 'fwflux_factor', 'grav', 'heat_to_PW', 'hflux_factor', 'latent_heat_fusion', 'latent_heat_fusion_mks', 'latent_heat_vapor', 'mass_to_Sv', 'momentum_factor', 'nsurface_t', 'nsurface_u', 'ocn_ref_salinity', 'omega', 'ppt_to_salt', 'radius', 'rho_air', 'rho_fw', 'rho_sw', 'salinity_factor', 'salt_to_Svppt', 'salt_to_mmday', 'salt_to_ppt', 'sea_ice_salinity', 'sflux_factor', 'sound', 'vonkar', 'stefan_boltzmann'], 'decode_times': False}\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-04-24 13:43:47,943 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-24 13:43:47,944 [INFO] config.py:139 -- Lithops v3.6.1.dev0 - Python3.12\n", + "2025-04-24 13:43:48,002 [INFO] aws_s3.py:59 -- S3 client created - Region: us-west-2\n", + "2025-04-24 13:43:48,408 [INFO] aws_lambda.py:97 -- AWS Lambda client created - Region: us-west-2\n", + "2025-04-24 13:43:48,409 [INFO] invokers.py:119 -- ExecutorID 85355d-1 | JobID M000 - Selected Runtime: virtualizarr-runtime - 1000MB\n", + "2025-04-24 13:43:48,569 [INFO] invokers.py:186 -- ExecutorID 85355d-1 | JobID M000 - Starting function invocation: _open() - Total: 2 activations\n", + "2025-04-24 13:43:48,571 [INFO] invokers.py:225 -- ExecutorID 85355d-1 | JobID M000 - View execution logs at /private/var/folders/6x/yyxxlhtd3db164lh5zgfhgp80000gn/T/lithops-tom/logs/85355d-1-M000.log\n", + "2025-04-24 13:43:48,572 [INFO] executors.py:494 -- ExecutorID 85355d-1 - Getting results from 2 function activations\n", + "2025-04-24 13:43:48,572 [INFO] wait.py:101 -- ExecutorID 85355d-1 - Waiting for 2 function activations to complete\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "669c61f7f9484d8398270dd14782e1e0", + "model_id": "ef1c5ab0f53840b9b594816d14b8d151", "version_major": 2, "version_minor": 0 }, @@ -28224,762 +28245,74 @@ "name": "stderr", "output_type": "stream", "text": [ - "2025-04-22 15:07:00,917 [WARNING] future.py:254 -- ExecutorID 78db0b-1 | JobID M000 - CallID: 00000 - There was an exception - Activation ID: ae10bc3e-caa3-4e01-b61c-fe6554a6c545 - KeyError\n", - "2025-04-22 15:07:00,920 [WARNING] future.py:254 -- ExecutorID 78db0b-1 | JobID M000 - CallID: 00001 - There was an exception - Activation ID: ff5731b1-52b0-428b-aee0-fd595ab53c70 - KeyError\n", - "2025-04-22 15:07:00,921 [INFO] executors.py:618 -- ExecutorID 78db0b-1 - Cleaning temporary data\n" - ] - }, - { - "ename": "KeyError", - "evalue": "'x-amz-bucket-region'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m:1\u001b[0m\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:351\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 347\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 348\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 349\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[1;32m 350\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[0;32m--> 351\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 352\u001b[0m open_func,\n\u001b[1;32m 353\u001b[0m paths1d,\n\u001b[1;32m 354\u001b[0m )\n\u001b[1;32m 355\u001b[0m )\n\u001b[1;32m 357\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 358\u001b[0m \n\u001b[1;32m 359\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/parallel.py:310\u001b[0m, in \u001b[0;36mLithopsEagerFunctionExecutor.map\u001b[0;34m(self, fn, timeout, chunksize, *iterables)\u001b[0m\n\u001b[1;32m 307\u001b[0m fexec \u001b[38;5;241m=\u001b[39m lithops\u001b[38;5;241m.\u001b[39mFunctionExecutor()\n\u001b[1;32m 309\u001b[0m futures \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mmap(fn, \u001b[38;5;241m*\u001b[39miterables)\n\u001b[0;32m--> 310\u001b[0m results \u001b[38;5;241m=\u001b[39m fexec\u001b[38;5;241m.\u001b[39mget_result(futures)\n\u001b[1;32m 312\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m results\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:499\u001b[0m, in \u001b[0;36mFunctionExecutor.get_result\u001b[0;34m(self, fs, throw_except, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 491\u001b[0m pending_to_read \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(fs) \u001b[38;5;28;01mif\u001b[39;00m fs \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(\n\u001b[1;32m 492\u001b[0m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfutures \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39m_read \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39mfutures])\n\u001b[1;32m 494\u001b[0m logger\u001b[38;5;241m.\u001b[39minfo(\n\u001b[1;32m 495\u001b[0m (\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mExecutorID \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mexecutor_id\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m - Getting results from \u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 496\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpending_to_read\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m function activations\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 497\u001b[0m )\n\u001b[0;32m--> 499\u001b[0m fs_done, _ \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mwait(\n\u001b[1;32m 500\u001b[0m fs\u001b[38;5;241m=\u001b[39mfs,\n\u001b[1;32m 501\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 502\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 503\u001b[0m download_results\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 504\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size,\n\u001b[1;32m 505\u001b[0m wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec,\n\u001b[1;32m 506\u001b[0m show_progressbar\u001b[38;5;241m=\u001b[39mshow_progressbar\n\u001b[1;32m 507\u001b[0m )\n\u001b[1;32m 509\u001b[0m result \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 510\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m fs_done \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m f\u001b[38;5;241m.\u001b[39mfutures \u001b[38;5;129;01mand\u001b[39;00m f\u001b[38;5;241m.\u001b[39m_produce_output]:\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:459\u001b[0m, in \u001b[0;36mFunctionExecutor.wait\u001b[0;34m(self, fs, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 457\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcompute_handler\u001b[38;5;241m.\u001b[39mclear(present_jobs, exception\u001b[38;5;241m=\u001b[39me)\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mclean(clean_cloudobjects\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, force\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[0;32m--> 459\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 461\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m download_results:\n\u001b[1;32m 462\u001b[0m fs_done \u001b[38;5;241m=\u001b[39m [f \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m futures \u001b[38;5;28;01mif\u001b[39;00m f\u001b[38;5;241m.\u001b[39mdone]\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/executors.py:434\u001b[0m, in \u001b[0;36mFunctionExecutor.wait\u001b[0;34m(self, fs, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar)\u001b[0m\n\u001b[1;32m 431\u001b[0m futures \u001b[38;5;241m=\u001b[39m [futures]\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 434\u001b[0m wait(fs\u001b[38;5;241m=\u001b[39mfutures,\n\u001b[1;32m 435\u001b[0m internal_storage\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39minternal_storage,\n\u001b[1;32m 436\u001b[0m job_monitor\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mjob_monitor,\n\u001b[1;32m 437\u001b[0m download_results\u001b[38;5;241m=\u001b[39mdownload_results,\n\u001b[1;32m 438\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 439\u001b[0m return_when\u001b[38;5;241m=\u001b[39mreturn_when,\n\u001b[1;32m 440\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 441\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size,\n\u001b[1;32m 442\u001b[0m wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec,\n\u001b[1;32m 443\u001b[0m show_progressbar\u001b[38;5;241m=\u001b[39mshow_progressbar,\n\u001b[1;32m 444\u001b[0m futures_from_executor_wait\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m \u001b[38;5;28;01mif\u001b[39;00m fs \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[1;32m 446\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdata_cleaner \u001b[38;5;129;01mand\u001b[39;00m return_when \u001b[38;5;241m==\u001b[39m ALL_COMPLETED:\n\u001b[1;32m 447\u001b[0m present_jobs \u001b[38;5;241m=\u001b[39m {f\u001b[38;5;241m.\u001b[39mjob_key \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m futures}\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:165\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(fs, internal_storage, job_monitor, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar, futures_from_executor_wait)\u001b[0m\n\u001b[1;32m 162\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m--> 165\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[1;32m 167\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 168\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_unix_system():\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:146\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(fs, internal_storage, job_monitor, throw_except, return_when, download_results, timeout, threadpool_size, wait_dur_sec, show_progressbar, futures_from_executor_wait)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m _check_done(fs, return_when, download_results):\n\u001b[1;32m 145\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m executor_data \u001b[38;5;129;01min\u001b[39;00m executors_data:\n\u001b[0;32m--> 146\u001b[0m new_data \u001b[38;5;241m=\u001b[39m _get_executor_data(fs, executor_data, pbar\u001b[38;5;241m=\u001b[39mpbar,\n\u001b[1;32m 147\u001b[0m throw_except\u001b[38;5;241m=\u001b[39mthrow_except,\n\u001b[1;32m 148\u001b[0m download_results\u001b[38;5;241m=\u001b[39mdownload_results,\n\u001b[1;32m 149\u001b[0m threadpool_size\u001b[38;5;241m=\u001b[39mthreadpool_size)\n\u001b[1;32m 150\u001b[0m time\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m new_data \u001b[38;5;28;01melse\u001b[39;00m sleep_sec)\n\u001b[1;32m 152\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyboardInterrupt\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:294\u001b[0m, in \u001b[0;36m_get_executor_data\u001b[0;34m(fs, exec_data, download_results, throw_except, threadpool_size, pbar)\u001b[0m\n\u001b[1;32m 292\u001b[0m pool \u001b[38;5;241m=\u001b[39m cf\u001b[38;5;241m.\u001b[39mThreadPoolExecutor(max_workers\u001b[38;5;241m=\u001b[39mthreadpool_size)\n\u001b[1;32m 293\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m download_results:\n\u001b[0;32m--> 294\u001b[0m \u001b[38;5;28mlist\u001b[39m(pool\u001b[38;5;241m.\u001b[39mmap(get_result, fs_to_wait_on))\n\u001b[1;32m 295\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 296\u001b[0m \u001b[38;5;28mlist\u001b[39m(pool\u001b[38;5;241m.\u001b[39mmap(get_status, fs_to_wait_on))\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:619\u001b[0m, in \u001b[0;36mExecutor.map..result_iterator\u001b[0;34m()\u001b[0m\n\u001b[1;32m 616\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m fs:\n\u001b[1;32m 617\u001b[0m \u001b[38;5;66;03m# Careful not to keep a reference to the popped future\u001b[39;00m\n\u001b[1;32m 618\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m timeout \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 619\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m _result_or_cancel(fs\u001b[38;5;241m.\u001b[39mpop())\n\u001b[1;32m 620\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 621\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m _result_or_cancel(fs\u001b[38;5;241m.\u001b[39mpop(), end_time \u001b[38;5;241m-\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic())\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:317\u001b[0m, in \u001b[0;36m_result_or_cancel\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 315\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 316\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 317\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m fut\u001b[38;5;241m.\u001b[39mresult(timeout)\n\u001b[1;32m 318\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 319\u001b[0m fut\u001b[38;5;241m.\u001b[39mcancel()\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:456\u001b[0m, in \u001b[0;36mFuture.result\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 454\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m CancelledError()\n\u001b[1;32m 455\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_state \u001b[38;5;241m==\u001b[39m FINISHED:\n\u001b[0;32m--> 456\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m__get_result()\n\u001b[1;32m 457\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTimeoutError\u001b[39;00m()\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/_base.py:401\u001b[0m, in \u001b[0;36mFuture.__get_result\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 399\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception:\n\u001b[1;32m 400\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 401\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception\n\u001b[1;32m 402\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 403\u001b[0m \u001b[38;5;66;03m# Break a reference cycle with the exception in self._exception\u001b[39;00m\n\u001b[1;32m 404\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/concurrent/futures/thread.py:58\u001b[0m, in \u001b[0;36m_WorkItem.run\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 55\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 58\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfn(\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkwargs)\n\u001b[1;32m 59\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mBaseException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m exc:\n\u001b[1;32m 60\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfuture\u001b[38;5;241m.\u001b[39mset_exception(exc)\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/wait.py:287\u001b[0m, in \u001b[0;36m_get_executor_data..get_result\u001b[0;34m(f)\u001b[0m\n\u001b[1;32m 286\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_result\u001b[39m(f):\n\u001b[0;32m--> 287\u001b[0m f\u001b[38;5;241m.\u001b[39mresult(throw_except\u001b[38;5;241m=\u001b[39mthrow_except, internal_storage\u001b[38;5;241m=\u001b[39mexec_data\u001b[38;5;241m.\u001b[39minternal_storage)\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/future.py:319\u001b[0m, in \u001b[0;36mResponseFuture.result\u001b[0;34m(self, throw_except, internal_storage, retries, wait_dur_sec)\u001b[0m\n\u001b[1;32m 316\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdone \u001b[38;5;129;01mand\u001b[39;00m internal_storage \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 317\u001b[0m internal_storage \u001b[38;5;241m=\u001b[39m InternalStorage(storage_config\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_storage_config)\n\u001b[0;32m--> 319\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstatus(throw_except\u001b[38;5;241m=\u001b[39mthrow_except, internal_storage\u001b[38;5;241m=\u001b[39minternal_storage, wait_dur_sec\u001b[38;5;241m=\u001b[39mwait_dur_sec)\n\u001b[1;32m 321\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfutures:\n\u001b[1;32m 322\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call_output \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_new_futures\n", - "File \u001b[0;32m~/Documents/Work/Code/lithops/lithops/future.py:271\u001b[0m, in \u001b[0;36mResponseFuture.status\u001b[0;34m(self, throw_except, internal_storage, check_only, wait_dur_sec)\u001b[0m\n\u001b[1;32m 269\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m throw_except:\n\u001b[1;32m 270\u001b[0m sys\u001b[38;5;241m.\u001b[39mexcepthook \u001b[38;5;241m=\u001b[39m exception_hook\n\u001b[0;32m--> 271\u001b[0m reraise(\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_exception)\n\u001b[1;32m 272\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 273\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/six.py:724\u001b[0m, in \u001b[0;36mreraise\u001b[0;34m(tp, value, tb)\u001b[0m\n\u001b[1;32m 722\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m value\u001b[38;5;241m.\u001b[39m__traceback__ \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m tb:\n\u001b[1;32m 723\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m value\u001b[38;5;241m.\u001b[39mwith_traceback(tb)\n\u001b[0;32m--> 724\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m value\n\u001b[1;32m 725\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 726\u001b[0m value \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n", - "File \u001b[0;32m/function/lithops/worker/jobrunner.py:237\u001b[0m, in \u001b[0;36mrun\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:343\u001b[0m, in \u001b[0;36m_open\u001b[0;34m()\u001b[0m\n\u001b[1;32m 342\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_open\u001b[39m(path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m xr\u001b[38;5;241m.\u001b[39mDataset:\n\u001b[0;32m--> 343\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m open_virtual_dataset(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36m_create_manifest_store\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/virtualizarr/manifests/store.py:134\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m()\u001b[0m\n", - "File \u001b[0;32m/usr/local/lib/python3.12/site-packages/requests/structures.py:52\u001b[0m, in \u001b[0;36m__getitem__\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mKeyError\u001b[0m: 'x-amz-bucket-region'" - ] - } - ], - "source": [ - "%%time\n", - "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", - " single_simulation_urls[0:2],\n", - " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", - " loadable_variables=LOW_DIMENSIONAL_VARS,\n", - " decode_times=False,\n", - " reader_options={'storage_options': s3fs_kwargs},\n", - " parallel='lithops',\n", - ")\n", - "combined_vds_single_simulation" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "'x-amz-bucket-region'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m:1\u001b[0m\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:350\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 347\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 348\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 349\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[0;32m--> 350\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[1;32m 351\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 352\u001b[0m open_func,\n\u001b[1;32m 353\u001b[0m paths1d,\n\u001b[1;32m 354\u001b[0m )\n\u001b[1;32m 355\u001b[0m )\n\u001b[1;32m 357\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 358\u001b[0m \n\u001b[1;32m 359\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:343\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset.._open\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 342\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_open\u001b[39m(path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m xr\u001b[38;5;241m.\u001b[39mDataset:\n\u001b[0;32m--> 343\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m open_virtual_dataset(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 170\u001b[0m \u001b[38;5;129m@staticmethod\u001b[39m\n\u001b[1;32m 171\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_create_manifest_store\u001b[39m(\n\u001b[1;32m 172\u001b[0m filepath: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 177\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m ManifestStore:\n\u001b[1;32m 178\u001b[0m \u001b[38;5;66;03m# Create a group containing dataset level metadata and all the manifest arrays\u001b[39;00m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[0;32m--> 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[1;32m 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m(filepath)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124ms3\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 145\u001b[0m bucket \u001b[38;5;241m=\u001b[39m parsed\u001b[38;5;241m.\u001b[39mnetloc\n\u001b[1;32m 146\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m obs\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mS3Store(\n\u001b[1;32m 147\u001b[0m bucket\u001b[38;5;241m=\u001b[39mbucket,\n\u001b[1;32m 148\u001b[0m client_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_http\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m},\n\u001b[1;32m 149\u001b[0m skip_signature\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 150\u001b[0m virtual_hosted_style_request\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[0;32m--> 151\u001b[0m region\u001b[38;5;241m=\u001b[39m_find_bucket_region(bucket),\n\u001b[1;32m 152\u001b[0m )\n\u001b[1;32m 153\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;129;01min\u001b[39;00m [\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 154\u001b[0m base_url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mscheme\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mnetloc\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:134\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m(bucket_name)\u001b[0m\n\u001b[1;32m 131\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[1;32m 133\u001b[0m resp \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mhead(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mbucket_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.s3.amazonaws.com\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 134\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\u001b[38;5;241m.\u001b[39mheaders[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mx-amz-bucket-region\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/structures.py:52\u001b[0m, in \u001b[0;36mCaseInsensitiveDict.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 51\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m__getitem__\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[0;32m---> 52\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_store[key\u001b[38;5;241m.\u001b[39mlower()][\u001b[38;5;241m1\u001b[39m]\n", - "\u001b[0;31mKeyError\u001b[0m: 'x-amz-bucket-region'" - ] - } - ], - "source": [ - "%%time\n", - "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", - " single_simulation_urls[0:1],\n", - " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", - " loadable_variables=LOW_DIMENSIONAL_VARS,\n", - " decode_times=False,\n", - " reader_options={'storage_options': s3fs_kwargs},\n", - " #parallel='lithops',\n", - ")\n", - "combined_vds_single_simulation" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Collecting obstore\n", - " Downloading obstore-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.2 kB)\n", - "Downloading obstore-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB)\n", - "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.3/3.3 MB\u001b[0m \u001b[31m29.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", - "\u001b[?25hInstalling collected packages: obstore\n", - "Successfully installed obstore-0.6.0\n" - ] - } - ], - "source": [ - "!pip install obstore" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [ - { - "ename": "SSLError", - "evalue": "HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mSSLCertVerificationError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:464\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[0;34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 463\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 464\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_validate_conn(conn)\n\u001b[1;32m 465\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (SocketTimeout, BaseSSLError) \u001b[38;5;28;01mas\u001b[39;00m e:\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:1093\u001b[0m, in \u001b[0;36mHTTPSConnectionPool._validate_conn\u001b[0;34m(self, conn)\u001b[0m\n\u001b[1;32m 1092\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m conn\u001b[38;5;241m.\u001b[39mis_closed:\n\u001b[0;32m-> 1093\u001b[0m conn\u001b[38;5;241m.\u001b[39mconnect()\n\u001b[1;32m 1095\u001b[0m \u001b[38;5;66;03m# TODO revise this, see https://github.com/urllib3/urllib3/issues/2791\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connection.py:741\u001b[0m, in \u001b[0;36mHTTPSConnection.connect\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 739\u001b[0m server_hostname_rm_dot \u001b[38;5;241m=\u001b[39m server_hostname\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m.\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 741\u001b[0m sock_and_verified \u001b[38;5;241m=\u001b[39m _ssl_wrap_socket_and_match_hostname(\n\u001b[1;32m 742\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 743\u001b[0m cert_reqs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcert_reqs,\n\u001b[1;32m 744\u001b[0m ssl_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_version,\n\u001b[1;32m 745\u001b[0m ssl_minimum_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_minimum_version,\n\u001b[1;32m 746\u001b[0m ssl_maximum_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_maximum_version,\n\u001b[1;32m 747\u001b[0m ca_certs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_certs,\n\u001b[1;32m 748\u001b[0m ca_cert_dir\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_cert_dir,\n\u001b[1;32m 749\u001b[0m ca_cert_data\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mca_cert_data,\n\u001b[1;32m 750\u001b[0m cert_file\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcert_file,\n\u001b[1;32m 751\u001b[0m key_file\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey_file,\n\u001b[1;32m 752\u001b[0m key_password\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey_password,\n\u001b[1;32m 753\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname_rm_dot,\n\u001b[1;32m 754\u001b[0m ssl_context\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mssl_context,\n\u001b[1;32m 755\u001b[0m tls_in_tls\u001b[38;5;241m=\u001b[39mtls_in_tls,\n\u001b[1;32m 756\u001b[0m assert_hostname\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39massert_hostname,\n\u001b[1;32m 757\u001b[0m assert_fingerprint\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39massert_fingerprint,\n\u001b[1;32m 758\u001b[0m )\n\u001b[1;32m 759\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msock \u001b[38;5;241m=\u001b[39m sock_and_verified\u001b[38;5;241m.\u001b[39msocket\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connection.py:920\u001b[0m, in \u001b[0;36m_ssl_wrap_socket_and_match_hostname\u001b[0;34m(sock, cert_reqs, ssl_version, ssl_minimum_version, ssl_maximum_version, cert_file, key_file, key_password, ca_certs, ca_cert_dir, ca_cert_data, assert_hostname, assert_fingerprint, server_hostname, ssl_context, tls_in_tls)\u001b[0m\n\u001b[1;32m 918\u001b[0m server_hostname \u001b[38;5;241m=\u001b[39m normalized\n\u001b[0;32m--> 920\u001b[0m ssl_sock \u001b[38;5;241m=\u001b[39m ssl_wrap_socket(\n\u001b[1;32m 921\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 922\u001b[0m keyfile\u001b[38;5;241m=\u001b[39mkey_file,\n\u001b[1;32m 923\u001b[0m certfile\u001b[38;5;241m=\u001b[39mcert_file,\n\u001b[1;32m 924\u001b[0m key_password\u001b[38;5;241m=\u001b[39mkey_password,\n\u001b[1;32m 925\u001b[0m ca_certs\u001b[38;5;241m=\u001b[39mca_certs,\n\u001b[1;32m 926\u001b[0m ca_cert_dir\u001b[38;5;241m=\u001b[39mca_cert_dir,\n\u001b[1;32m 927\u001b[0m ca_cert_data\u001b[38;5;241m=\u001b[39mca_cert_data,\n\u001b[1;32m 928\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname,\n\u001b[1;32m 929\u001b[0m ssl_context\u001b[38;5;241m=\u001b[39mcontext,\n\u001b[1;32m 930\u001b[0m tls_in_tls\u001b[38;5;241m=\u001b[39mtls_in_tls,\n\u001b[1;32m 931\u001b[0m )\n\u001b[1;32m 933\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/ssl_.py:460\u001b[0m, in \u001b[0;36mssl_wrap_socket\u001b[0;34m(sock, keyfile, certfile, cert_reqs, ca_certs, server_hostname, ssl_version, ciphers, ssl_context, ca_cert_dir, key_password, ca_cert_data, tls_in_tls)\u001b[0m\n\u001b[1;32m 458\u001b[0m context\u001b[38;5;241m.\u001b[39mset_alpn_protocols(ALPN_PROTOCOLS)\n\u001b[0;32m--> 460\u001b[0m ssl_sock \u001b[38;5;241m=\u001b[39m _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname)\n\u001b[1;32m 461\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ssl_sock\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/ssl_.py:504\u001b[0m, in \u001b[0;36m_ssl_wrap_socket_impl\u001b[0;34m(sock, ssl_context, tls_in_tls, server_hostname)\u001b[0m\n\u001b[1;32m 502\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m SSLTransport(sock, ssl_context, server_hostname)\n\u001b[0;32m--> 504\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ssl_context\u001b[38;5;241m.\u001b[39mwrap_socket(sock, server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname)\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:455\u001b[0m, in \u001b[0;36mSSLContext.wrap_socket\u001b[0;34m(self, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, session)\u001b[0m\n\u001b[1;32m 449\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mwrap_socket\u001b[39m(\u001b[38;5;28mself\u001b[39m, sock, server_side\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 450\u001b[0m do_handshake_on_connect\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 451\u001b[0m suppress_ragged_eofs\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 452\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, session\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m):\n\u001b[1;32m 453\u001b[0m \u001b[38;5;66;03m# SSLSocket class handles server_hostname encoding before it calls\u001b[39;00m\n\u001b[1;32m 454\u001b[0m \u001b[38;5;66;03m# ctx._wrap_socket()\u001b[39;00m\n\u001b[0;32m--> 455\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msslsocket_class\u001b[38;5;241m.\u001b[39m_create(\n\u001b[1;32m 456\u001b[0m sock\u001b[38;5;241m=\u001b[39msock,\n\u001b[1;32m 457\u001b[0m server_side\u001b[38;5;241m=\u001b[39mserver_side,\n\u001b[1;32m 458\u001b[0m do_handshake_on_connect\u001b[38;5;241m=\u001b[39mdo_handshake_on_connect,\n\u001b[1;32m 459\u001b[0m suppress_ragged_eofs\u001b[38;5;241m=\u001b[39msuppress_ragged_eofs,\n\u001b[1;32m 460\u001b[0m server_hostname\u001b[38;5;241m=\u001b[39mserver_hostname,\n\u001b[1;32m 461\u001b[0m context\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 462\u001b[0m session\u001b[38;5;241m=\u001b[39msession\n\u001b[1;32m 463\u001b[0m )\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:1042\u001b[0m, in \u001b[0;36mSSLSocket._create\u001b[0;34m(cls, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, context, session)\u001b[0m\n\u001b[1;32m 1041\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdo_handshake_on_connect should not be specified for non-blocking sockets\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m-> 1042\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdo_handshake()\n\u001b[1;32m 1043\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/ssl.py:1320\u001b[0m, in \u001b[0;36mSSLSocket.do_handshake\u001b[0;34m(self, block)\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msettimeout(\u001b[38;5;28;01mNone\u001b[39;00m)\n\u001b[0;32m-> 1320\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_sslobj\u001b[38;5;241m.\u001b[39mdo_handshake()\n\u001b[1;32m 1321\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n", - "\u001b[0;31mSSLCertVerificationError\u001b[0m: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mSSLError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:787\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 786\u001b[0m \u001b[38;5;66;03m# Make the request on the HTTPConnection object\u001b[39;00m\n\u001b[0;32m--> 787\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_make_request(\n\u001b[1;32m 788\u001b[0m conn,\n\u001b[1;32m 789\u001b[0m method,\n\u001b[1;32m 790\u001b[0m url,\n\u001b[1;32m 791\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout_obj,\n\u001b[1;32m 792\u001b[0m body\u001b[38;5;241m=\u001b[39mbody,\n\u001b[1;32m 793\u001b[0m headers\u001b[38;5;241m=\u001b[39mheaders,\n\u001b[1;32m 794\u001b[0m chunked\u001b[38;5;241m=\u001b[39mchunked,\n\u001b[1;32m 795\u001b[0m retries\u001b[38;5;241m=\u001b[39mretries,\n\u001b[1;32m 796\u001b[0m response_conn\u001b[38;5;241m=\u001b[39mresponse_conn,\n\u001b[1;32m 797\u001b[0m preload_content\u001b[38;5;241m=\u001b[39mpreload_content,\n\u001b[1;32m 798\u001b[0m decode_content\u001b[38;5;241m=\u001b[39mdecode_content,\n\u001b[1;32m 799\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mresponse_kw,\n\u001b[1;32m 800\u001b[0m )\n\u001b[1;32m 802\u001b[0m \u001b[38;5;66;03m# Everything went great!\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:488\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[0;34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 487\u001b[0m new_e \u001b[38;5;241m=\u001b[39m _wrap_proxy_error(new_e, conn\u001b[38;5;241m.\u001b[39mproxy\u001b[38;5;241m.\u001b[39mscheme)\n\u001b[0;32m--> 488\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m new_e\n\u001b[1;32m 490\u001b[0m \u001b[38;5;66;03m# conn.request() calls http.client.*.request, not the method in\u001b[39;00m\n\u001b[1;32m 491\u001b[0m \u001b[38;5;66;03m# urllib3.request. It also calls makefile (recv) on the socket.\u001b[39;00m\n", - "\u001b[0;31mSSLError\u001b[0m: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[0;31mMaxRetryError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/adapters.py:667\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 666\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 667\u001b[0m resp \u001b[38;5;241m=\u001b[39m conn\u001b[38;5;241m.\u001b[39murlopen(\n\u001b[1;32m 668\u001b[0m method\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mmethod,\n\u001b[1;32m 669\u001b[0m url\u001b[38;5;241m=\u001b[39murl,\n\u001b[1;32m 670\u001b[0m body\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mbody,\n\u001b[1;32m 671\u001b[0m headers\u001b[38;5;241m=\u001b[39mrequest\u001b[38;5;241m.\u001b[39mheaders,\n\u001b[1;32m 672\u001b[0m redirect\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 673\u001b[0m assert_same_host\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 674\u001b[0m preload_content\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 675\u001b[0m decode_content\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 676\u001b[0m retries\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmax_retries,\n\u001b[1;32m 677\u001b[0m timeout\u001b[38;5;241m=\u001b[39mtimeout,\n\u001b[1;32m 678\u001b[0m chunked\u001b[38;5;241m=\u001b[39mchunked,\n\u001b[1;32m 679\u001b[0m )\n\u001b[1;32m 681\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (ProtocolError, \u001b[38;5;167;01mOSError\u001b[39;00m) \u001b[38;5;28;01mas\u001b[39;00m err:\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/connectionpool.py:841\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 839\u001b[0m new_e \u001b[38;5;241m=\u001b[39m ProtocolError(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mConnection aborted.\u001b[39m\u001b[38;5;124m\"\u001b[39m, new_e)\n\u001b[0;32m--> 841\u001b[0m retries \u001b[38;5;241m=\u001b[39m retries\u001b[38;5;241m.\u001b[39mincrement(\n\u001b[1;32m 842\u001b[0m method, url, error\u001b[38;5;241m=\u001b[39mnew_e, _pool\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m, _stacktrace\u001b[38;5;241m=\u001b[39msys\u001b[38;5;241m.\u001b[39mexc_info()[\u001b[38;5;241m2\u001b[39m]\n\u001b[1;32m 843\u001b[0m )\n\u001b[1;32m 844\u001b[0m retries\u001b[38;5;241m.\u001b[39msleep()\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/urllib3/util/retry.py:519\u001b[0m, in \u001b[0;36mRetry.increment\u001b[0;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[1;32m 518\u001b[0m reason \u001b[38;5;241m=\u001b[39m error \u001b[38;5;129;01mor\u001b[39;00m ResponseError(cause)\n\u001b[0;32m--> 519\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m MaxRetryError(_pool, url, reason) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mreason\u001b[39;00m \u001b[38;5;66;03m# type: ignore[arg-type]\u001b[39;00m\n\u001b[1;32m 521\u001b[0m log\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIncremented Retry for (url=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m): \u001b[39m\u001b[38;5;132;01m%r\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, url, new_retry)\n", - "\u001b[0;31mMaxRetryError\u001b[0m: HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mSSLError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[22], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m vz\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 2\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124ms3://us-west-2.opendata.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 3\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39m[],\n\u001b[1;32m 4\u001b[0m decode_times\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 5\u001b[0m reader_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mstorage_options\u001b[39m\u001b[38;5;124m'\u001b[39m: {\u001b[38;5;124m'\u001b[39m\u001b[38;5;124manon\u001b[39m\u001b[38;5;124m'\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m}},\n\u001b[1;32m 6\u001b[0m )\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:180\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 170\u001b[0m \u001b[38;5;129m@staticmethod\u001b[39m\n\u001b[1;32m 171\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_create_manifest_store\u001b[39m(\n\u001b[1;32m 172\u001b[0m filepath: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 177\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m ManifestStore:\n\u001b[1;32m 178\u001b[0m \u001b[38;5;66;03m# Create a group containing dataset level metadata and all the manifest arrays\u001b[39;00m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[0;32m--> 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[1;32m 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:151\u001b[0m, in \u001b[0;36mdefault_object_store\u001b[0;34m(filepath)\u001b[0m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124ms3\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 145\u001b[0m bucket \u001b[38;5;241m=\u001b[39m parsed\u001b[38;5;241m.\u001b[39mnetloc\n\u001b[1;32m 146\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m obs\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mS3Store(\n\u001b[1;32m 147\u001b[0m bucket\u001b[38;5;241m=\u001b[39mbucket,\n\u001b[1;32m 148\u001b[0m client_options\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_http\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;28;01mTrue\u001b[39;00m},\n\u001b[1;32m 149\u001b[0m skip_signature\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 150\u001b[0m virtual_hosted_style_request\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[0;32m--> 151\u001b[0m region\u001b[38;5;241m=\u001b[39m_find_bucket_region(bucket),\n\u001b[1;32m 152\u001b[0m )\n\u001b[1;32m 153\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m parsed\u001b[38;5;241m.\u001b[39mscheme \u001b[38;5;129;01min\u001b[39;00m [\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 154\u001b[0m base_url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mscheme\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparsed\u001b[38;5;241m.\u001b[39mnetloc\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n", - "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:133\u001b[0m, in \u001b[0;36m_find_bucket_region\u001b[0;34m(bucket_name)\u001b[0m\n\u001b[1;32m 130\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_find_bucket_region\u001b[39m(bucket_name: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mstr\u001b[39m:\n\u001b[1;32m 131\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[0;32m--> 133\u001b[0m resp \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mhead(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mbucket_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m.s3.amazonaws.com\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 134\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\u001b[38;5;241m.\u001b[39mheaders[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mx-amz-bucket-region\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/api.py:100\u001b[0m, in \u001b[0;36mhead\u001b[0;34m(url, **kwargs)\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"Sends a HEAD request.\u001b[39;00m\n\u001b[1;32m 90\u001b[0m \n\u001b[1;32m 91\u001b[0m \u001b[38;5;124;03m:param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 96\u001b[0m \u001b[38;5;124;03m:rtype: requests.Response\u001b[39;00m\n\u001b[1;32m 97\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 99\u001b[0m kwargs\u001b[38;5;241m.\u001b[39msetdefault(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m request(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhead\u001b[39m\u001b[38;5;124m\"\u001b[39m, url, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/api.py:59\u001b[0m, in \u001b[0;36mrequest\u001b[0;34m(method, url, **kwargs)\u001b[0m\n\u001b[1;32m 55\u001b[0m \u001b[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001b[39;00m\n\u001b[1;32m 56\u001b[0m \u001b[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001b[39;00m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;66;03m# cases, and look like a memory leak in others.\u001b[39;00m\n\u001b[1;32m 58\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m sessions\u001b[38;5;241m.\u001b[39mSession() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[0;32m---> 59\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m session\u001b[38;5;241m.\u001b[39mrequest(method\u001b[38;5;241m=\u001b[39mmethod, url\u001b[38;5;241m=\u001b[39murl, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/sessions.py:589\u001b[0m, in \u001b[0;36mSession.request\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 584\u001b[0m send_kwargs \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 585\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtimeout\u001b[39m\u001b[38;5;124m\"\u001b[39m: timeout,\n\u001b[1;32m 586\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m\"\u001b[39m: allow_redirects,\n\u001b[1;32m 587\u001b[0m }\n\u001b[1;32m 588\u001b[0m send_kwargs\u001b[38;5;241m.\u001b[39mupdate(settings)\n\u001b[0;32m--> 589\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msend(prep, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msend_kwargs)\n\u001b[1;32m 591\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/sessions.py:703\u001b[0m, in \u001b[0;36mSession.send\u001b[0;34m(self, request, **kwargs)\u001b[0m\n\u001b[1;32m 700\u001b[0m start \u001b[38;5;241m=\u001b[39m preferred_clock()\n\u001b[1;32m 702\u001b[0m \u001b[38;5;66;03m# Send the request\u001b[39;00m\n\u001b[0;32m--> 703\u001b[0m r \u001b[38;5;241m=\u001b[39m adapter\u001b[38;5;241m.\u001b[39msend(request, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 705\u001b[0m \u001b[38;5;66;03m# Total elapsed time of the request (approximately)\u001b[39;00m\n\u001b[1;32m 706\u001b[0m elapsed \u001b[38;5;241m=\u001b[39m preferred_clock() \u001b[38;5;241m-\u001b[39m start\n", - "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/requests/adapters.py:698\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 694\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m ProxyError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 696\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(e\u001b[38;5;241m.\u001b[39mreason, _SSLError):\n\u001b[1;32m 697\u001b[0m \u001b[38;5;66;03m# This branch is for urllib3 v1.22 and later.\u001b[39;00m\n\u001b[0;32m--> 698\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m SSLError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 700\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 702\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ClosedPoolError \u001b[38;5;28;01mas\u001b[39;00m e:\n", - "\u001b[0;31mSSLError\u001b[0m: HTTPSConnectionPool(host='us-west-2.opendata.source.coop.s3.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'us-west-2.opendata.source.coop.s3.amazonaws.com'. (_ssl.c:1000)\")))" - ] - } - ], - "source": [ - "vz.open_virtual_dataset(\n", - " 's3://us-west-2.opendata.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", - " loadable_variables=[],\n", - " decode_times=False,\n", - " reader_options={'storage_options': {'anon': True}},\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [], - "source": [ - "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [], - "source": [ - "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [], - "source": [ - "fs = s3fs.S3FileSystem(**s3fs_kwargs)" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [], - "source": [ - "from virtualizarr.readers import HDF5VirtualBackend" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2025-04-22 15:56:18,677 - h5-to-zarr - DEBUG - __init__ -- HDF5 file: s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\n", - "2025-04-22 15:56:28,184 - h5-to-zarr - DEBUG - __init__ -- HDF5 file URI: s3://cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\n", - "2025-04-22 15:56:28,184 - h5-to-zarr - DEBUG - translate -- Translation begins\n", - "2025-04-22 15:57:21,344 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK\n", - "2025-04-22 15:57:21,346 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:04:46,656 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:04:46,666 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:04:52,121 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_ALT_CO2\n", - "2025-04-22 16:04:52,121 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:04:52,125 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:04:52,127 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:04:52,128 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_ALT_CO2_zint_100m\n", - "2025-04-22 16:04:52,128 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:04:52,132 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:04:52,136 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:04:55,360 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_FLUX\n", - "2025-04-22 16:04:55,361 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:04:58,895 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:04:58,900 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:06,562 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ALK_zint_100m\n", - "2025-04-22 16:05:06,563 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:06,569 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:06,572 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:11,262 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ANGLE\n", - "2025-04-22 16:05:11,263 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:11,268 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:11,270 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:05:11,271 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ANGLET\n", - "2025-04-22 16:05:11,271 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:11,274 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:11,276 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:05:19,755 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ATM_CO2\n", - "2025-04-22 16:05:19,755 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:19,760 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:19,764 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:26,810 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO2STAR\n", - "2025-04-22 16:05:26,811 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:26,817 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO2STAR_ALT_CO2\n", - "2025-04-22 16:05:26,820 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:26,825 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:26,828 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:30,456 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO3\n", - "2025-04-22 16:05:30,456 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:30,460 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:30,462 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:05:30,463 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /CO3_ALT_CO2\n", - "2025-04-22 16:05:30,463 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:30,467 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:30,472 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:05:41,538 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DCO2STAR\n", - "2025-04-22 16:05:41,538 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:45,529 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:45,534 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:45,535 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DCO2STAR_ALT_CO2\n", - "2025-04-22 16:05:45,536 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:45,541 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:45,546 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:45,547 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC\n", - "2025-04-22 16:05:45,548 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:45,553 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:45,557 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:05:45,558 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_ALT_CO2\n", - "2025-04-22 16:05:45,559 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:45,563 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:45,566 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:05:45,567 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_ALT_CO2_zint_100m\n", - "2025-04-22 16:05:45,567 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:45,569 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:45,573 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:49,664 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DIC_zint_100m\n", - "2025-04-22 16:05:49,665 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:49,669 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:49,672 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:05:58,408 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DXT\n", - "2025-04-22 16:05:58,408 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:05:58,412 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:05:58,414 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:07,253 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DXU\n", - "2025-04-22 16:06:07,254 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:07,259 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:07,263 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:07,264 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DYT\n", - "2025-04-22 16:06:07,265 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:07,269 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:07,272 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:07,273 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DYU\n", - "2025-04-22 16:06:07,274 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:07,278 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:07,282 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:17,473 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DpCO2\n", - "2025-04-22 16:06:17,474 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:17,481 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:17,484 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:21,679 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /DpCO2_ALT_CO2\n", - "2025-04-22 16:06:21,680 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:21,684 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:21,687 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:21,688 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /FG_ALT_CO2\n", - "2025-04-22 16:06:21,688 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:21,691 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /FG_CO2\n", - "2025-04-22 16:06:21,694 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:21,697 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:21,699 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:25,544 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HT\n", - "2025-04-22 16:06:25,544 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:25,548 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HTE\n", - "2025-04-22 16:06:25,551 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:25,554 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HTN\n", - "2025-04-22 16:06:25,556 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:25,559 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:25,560 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:29,286 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HU\n", - "2025-04-22 16:06:29,287 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:29,290 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:29,292 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:29,294 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HUS\n", - "2025-04-22 16:06:29,295 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:29,297 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:29,299 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:29,300 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /HUW\n", - "2025-04-22 16:06:29,300 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:29,302 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:29,304 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:33,124 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /KMT\n", - "2025-04-22 16:06:33,124 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:33,133 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:33,135 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:33,136 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /KMU\n", - "2025-04-22 16:06:33,136 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:33,139 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:33,140 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:36,492 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /PH\n", - "2025-04-22 16:06:36,493 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:36,497 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:36,501 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:36,501 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /PH_ALT_CO2\n", - "2025-04-22 16:06:36,502 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:36,505 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:36,508 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:41,098 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /REGION_MASK\n", - "2025-04-22 16:06:41,099 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:41,102 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:41,104 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:06:44,540 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /STF_ALK\n", - "2025-04-22 16:06:44,541 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:44,545 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /STF_ALK_ALT_CO2\n", - "2025-04-22 16:06:44,549 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:44,553 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /T0_Kelvin\n", - "2025-04-22 16:06:44,556 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:06:44,558 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:44,559 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:06:50,719 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TAREA\n", - "2025-04-22 16:06:50,721 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:06:50,726 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:06:50,729 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:34,307 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TLAT\n", - "2025-04-22 16:07:34,308 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:07:34,313 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:34,316 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:41,764 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /TLONG\n", - "2025-04-22 16:07:41,764 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:07:41,770 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:41,773 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:41,775 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /UAREA\n", - "2025-04-22 16:07:41,776 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:07:41,781 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:41,785 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:49,587 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ULAT\n", - "2025-04-22 16:07:49,588 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:07:49,593 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:49,595 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:56,236 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ULONG\n", - "2025-04-22 16:07:56,237 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:07:56,241 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:56,243 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['nlat', 'nlon']\n", - "2025-04-22 16:07:56,243 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /_nc4_non_coord_time\n", - "2025-04-22 16:07:56,244 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:07:56,246 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:07:56,248 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date', 'elapsed_time']\n", - "2025-04-22 16:08:18,826 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /co3_sat_arag\n", - "2025-04-22 16:08:18,826 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:18,831 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:18,834 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:08:23,103 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /co3_sat_calc\n", - "2025-04-22 16:08:23,103 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:23,109 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /cp_air\n", - "2025-04-22 16:08:23,112 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:23,114 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:23,115 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:23,116 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /cp_sw\n", - "2025-04-22 16:08:23,116 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:23,118 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:23,119 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:23,119 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /d2\n", - "2025-04-22 16:08:23,120 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:23,120 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /days_in_norm_year\n", - "2025-04-22 16:08:23,121 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:23,122 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:23,123 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,139 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /dz\n", - "2025-04-22 16:08:27,140 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:27,143 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,145 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t']\n", - "2025-04-22 16:08:27,146 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /dzw\n", - "2025-04-22 16:08:27,146 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:27,148 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,150 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w']\n", - "2025-04-22 16:08:27,150 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /elapsed_time\n", - "2025-04-22 16:08:27,151 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,153 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,155 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['elapsed_time']\n", - "2025-04-22 16:08:27,156 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /fwflux_factor\n", - "2025-04-22 16:08:27,156 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,157 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,158 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,159 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /grav\n", - "2025-04-22 16:08:27,159 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,160 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,161 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,161 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /heat_to_PW\n", - "2025-04-22 16:08:27,162 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,164 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,164 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,165 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /hflux_factor\n", - "2025-04-22 16:08:27,165 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,166 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /injection_date\n", - "2025-04-22 16:08:27,167 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,169 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date']\n", - "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_fusion\n", - "2025-04-22 16:08:27,170 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,172 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_fusion_mks\n", - "2025-04-22 16:08:27,173 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,175 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /latent_heat_vapor\n", - "2025-04-22 16:08:27,176 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,177 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /mass_to_Sv\n", - "2025-04-22 16:08:27,178 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,180 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,180 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,181 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /momentum_factor\n", - "2025-04-22 16:08:27,181 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,182 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nlat\n", - "2025-04-22 16:08:27,183 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,184 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nlon\n", - "2025-04-22 16:08:27,184 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,185 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nsurface_t\n", - "2025-04-22 16:08:27,185 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,186 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,186 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,187 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /nsurface_u\n", - "2025-04-22 16:08:27,187 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,188 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ocn_ref_salinity\n", - "2025-04-22 16:08:27,189 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,190 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,191 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:27,191 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /omega\n", - "2025-04-22 16:08:27,192 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:27,193 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:27,194 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:34,021 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pCO2SURF\n", - "2025-04-22 16:08:34,021 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:34,026 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:34,029 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:37,786 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pCO2SURF_ALT_CO2\n", - "2025-04-22 16:08:37,787 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:37,792 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:37,795 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:41,262 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pH_3D\n", - "2025-04-22 16:08:41,263 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:41,268 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:41,271 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:08:49,237 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /pH_3D_ALT_CO2\n", - "2025-04-22 16:08:49,238 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:49,243 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,246 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'z_t', 'nlat', 'nlon']\n", - "2025-04-22 16:08:49,247 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /polygon_id\n", - "2025-04-22 16:08:49,247 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,249 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id']\n", - "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /ppt_to_salt\n", - "2025-04-22 16:08:49,250 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,252 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,253 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,253 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /radius\n", - "2025-04-22 16:08:49,254 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,255 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_air\n", - "2025-04-22 16:08:49,258 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,260 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,261 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,261 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_fw\n", - "2025-04-22 16:08:49,262 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,263 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,264 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,265 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /rho_sw\n", - "2025-04-22 16:08:49,265 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,266 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,267 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,267 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salinity_factor\n", - "2025-04-22 16:08:49,268 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,269 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_Svppt\n", - "2025-04-22 16:08:49,270 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,272 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,272 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,273 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_mmday\n", - "2025-04-22 16:08:49,273 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,275 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /salt_to_ppt\n", - "2025-04-22 16:08:49,276 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,277 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,277 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,278 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sea_ice_salinity\n", - "2025-04-22 16:08:49,278 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,279 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,280 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,280 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sflux_factor\n", - "2025-04-22 16:08:49,281 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,282 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,282 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,283 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /sound\n", - "2025-04-22 16:08:49,283 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,284 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /stefan_boltzmann\n", - "2025-04-22 16:08:49,285 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:49,286 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:49,287 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:08:51,031 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_ALK\n", - "2025-04-22 16:08:51,032 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:51,036 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:51,040 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:51,041 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_ALK_ALT_CO2\n", - "2025-04-22 16:08:51,041 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:51,045 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:51,047 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:55,049 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_DIC\n", - "2025-04-22 16:08:55,049 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:55,054 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:55,058 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:55,058 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /tend_zint_100m_DIC_ALT_CO2\n", - "2025-04-22 16:08:55,059 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:08:55,062 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:55,065 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['polygon_id', 'injection_date', 'elapsed_time', 'nlat', 'nlon']\n", - "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /time\n", - "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:55,066 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /time_bound\n", - "2025-04-22 16:08:55,067 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:55,069 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:55,070 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['injection_date', 'elapsed_time', 'd2']\n", - "2025-04-22 16:08:55,071 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /vonkar\n", - "2025-04-22 16:08:55,071 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: None\n", - "2025-04-22 16:08:55,072 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:08:55,073 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = []\n", - "2025-04-22 16:09:05,482 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_t\n", - "2025-04-22 16:09:05,482 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:09:05,485 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:09:05,488 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t']\n", - "2025-04-22 16:09:05,489 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_t_150m\n", - "2025-04-22 16:09:05,489 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:09:05,491 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:09:05,493 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_t_150m']\n", - "2025-04-22 16:09:05,494 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w\n", - "2025-04-22 16:09:05,494 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:09:05,496 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:09:05,498 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w']\n", - "2025-04-22 16:09:05,499 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w_bot\n", - "2025-04-22 16:09:05,499 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:09:05,501 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:09:05,503 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w_bot']\n", - "2025-04-22 16:09:05,503 - h5-to-zarr - DEBUG - _translator -- HDF5 dataset: /z_w_top\n", - "2025-04-22 16:09:05,504 - h5-to-zarr - DEBUG - _translator -- HDF5 compression: gzip\n", - "2025-04-22 16:09:05,506 - h5-to-zarr - DEBUG - _translator -- Created Zarr array: \n", - "2025-04-22 16:09:05,508 - h5-to-zarr - DEBUG - _translator -- _ARRAY_DIMENSIONS = ['z_w_top']\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "2025-04-24 13:47:00,493 [INFO] executors.py:618 -- ExecutorID 85355d-1 - Cleaning temporary data\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", - " super().__init__(**codec_config)\n", - "/Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", " super().__init__(**codec_config)\n" ] }, @@ -28987,8 +28320,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 1min 4s, sys: 38.6 s, total: 1min 43s\n", - "Wall time: 16min 56s\n" + "CPU times: user 2.04 s, sys: 377 ms, total: 2.42 s\n", + "Wall time: 3min 13s\n" ] }, { @@ -29364,40 +28697,40 @@ " stroke: currentColor;\n", " fill: currentColor;\n", "}\n", - "
<xarray.Dataset> Size: 326MB\n",
-       "Dimensions:                     (polygon_id: 1, injection_date: 1,\n",
-       "                                 elapsed_time: 1, z_t: 60, nlat: 384,\n",
-       "                                 nlon: 320, z_w: 60, d2: 2, z_t_150m: 15,\n",
-       "                                 z_w_bot: 60, z_w_top: 60)\n",
+       "
<xarray.Dataset> Size: 633MB\n",
+       "Dimensions:                     (injection_date: 1, elapsed_time: 2,\n",
+       "                                 polygon_id: 1, z_t: 60, nlat: 384, nlon: 320,\n",
+       "                                 z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, d2: 2)\n",
        "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "    dz                          (z_t) float32 240B ...\n",
+       "    ...                          ...\n",
+       "    HTN                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HTE                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUS                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUW                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
        "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
        "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
-       "    DXT                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
-       "    DXU                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
-       "    DYT                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
-       "    DYU                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
-       "    ...                          ...\n",
-       "    vonkar                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
-       "    z_t                         (z_t) float32 240B ManifestArray<shape=(60,),...\n",
-       "    z_t_150m                    (z_t_150m) float32 60B ManifestArray<shape=(1...\n",
-       "    z_w                         (z_w) float32 240B ManifestArray<shape=(60,),...\n",
-       "    z_w_bot                     (z_w_bot) float32 240B ManifestArray<shape=(6...\n",
-       "    z_w_top                     (z_w_top) float32 240B ManifestArray<shape=(6...\n",
        "Dimensions without coordinates: nlat, nlon, d2\n",
        "Data variables: (12/35)\n",
-       "    ALK                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
-       "    ALK_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
-       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    ALK_FLUX                    (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    ALK_zint_100m               (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    ATM_CO2                     (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 16B Ma...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 59MB ManifestArray<shape=(1, 1, 2, 60, 384, 320), dtype=float32, chu...\n",
        "    ...                          ...\n",
-       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
-       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
-       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
-       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 983kB ManifestArray<shape=(1, 1, 2, 384, 320), dtype=float32, chu...\n",
        "Attributes:\n",
        "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
        "    history:           none\n",
@@ -29409,43 +28742,148 @@
        "    revision:          $Id$\n",
        "    calendar:          All years have exactly  365 days.\n",
        "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
-       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + " cell_methods: cell_methods = time: mean ==> the variable values are ...
" ], "text/plain": [ - " Size: 326MB\n", - "Dimensions: (polygon_id: 1, injection_date: 1,\n", - " elapsed_time: 1, z_t: 60, nlat: 384,\n", - " nlon: 320, z_w: 60, d2: 2, z_t_150m: 15,\n", - " z_w_bot: 60, z_w_top: 60)\n", + " Size: 633MB\n", + "Dimensions: (injection_date: 1, elapsed_time: 2,\n", + " polygon_id: 1, z_t: 60, nlat: 384, nlon: 320,\n", + " z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, d2: 2)\n", "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " dz (z_t) float32 240B ...\n", + " ... ...\n", + " HTN (nlat, nlon) float64 983kB ManifestArray the variable values are ..." ] }, - "execution_count": 32, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%time\n", - "vds = vz.open_virtual_dataset(\n", - " single_file_url, \n", - " loadable_variables=[],\n", + "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", + " single_simulation_urls[0:2],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", - " reader_options={'storage_options': s3fs_kwargs},\n", - " backend=HDF5VirtualBackend,\n", + " parallel='lithops',\n", ")\n", - "vds" + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1000. , 1000. , 1000. , 1000. , 1000. ,\n", + " 1000. , 1000. , 1000. , 1000. , 1000. ,\n", + " 1000. , 1000. , 1000. , 1000. , 1000. ,\n", + " 1000. , 1019.6808, 1056.4484, 1105.9951, 1167.807 ,\n", + " 1242.4133, 1330.9678, 1435.141 , 1557.1259, 1699.6796,\n", + " 1866.2124, 2060.9023, 2288.852 , 2556.247 , 2870.575 ,\n", + " 3240.8372, 3677.7725, 4194.031 , 4804.2236, 5524.7544,\n", + " 6373.192 , 7366.945 , 8520.893 , 9843.658 , 11332.466 ,\n", + " 12967.199 , 14705.344 , 16480.709 , 18209.135 , 19802.234 ,\n", + " 21185.957 , 22316.51 , 23186.494 , 23819.45 , 24257.217 ,\n", + " 24546.78 , 24731.014 , 24844.328 , 24911.975 , 24951.291 ,\n", + " 24973.594 , 24985.96 , 24992.674 , 24996.244 , 24998.11 ],\n", + " dtype=float32)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "combined_vds_single_simulation['dz'].values" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2.976" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "combined_vds_single_simulation.drop_vars(LOW_DIMENSIONAL_VARS, errors='ignore').virtualize.nbytes / 1e3" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "import icechunk" ] }, { @@ -29483,29 +28983,2248 @@ "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Collecting kerchunk\n", - " Downloading kerchunk-0.2.8-py3-none-any.whl.metadata (4.4 kB)\n", - "Requirement already satisfied: fsspec in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (2025.3.2)\n", - "Requirement already satisfied: numcodecs in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (0.16.0)\n", - "Requirement already satisfied: numpy in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (2.2.4)\n", - "Requirement already satisfied: ujson in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (5.10.0)\n", - "Requirement already satisfied: zarr>=3.0.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from kerchunk) (3.0.6)\n", - "Requirement already satisfied: donfig>=0.8 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (0.8.1.post1)\n", - "Requirement already satisfied: packaging>=22.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (24.2)\n", - "Requirement already satisfied: typing-extensions>=4.9 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.1->kerchunk) (4.13.2)\n", - "Requirement already satisfied: pyyaml in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from donfig>=0.8->zarr>=3.0.1->kerchunk) (6.0.2)\n", - "Requirement already satisfied: crc32c>=2.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from numcodecs[crc32c]>=0.14->zarr>=3.0.1->kerchunk) (2.7.1)\n", - "Downloading kerchunk-0.2.8-py3-none-any.whl (65 kB)\n", - "Installing collected packages: kerchunk\n", - "Successfully installed kerchunk-0.2.8\n" - ] + "data": { + "text/plain": [ + "['AnyObjectStoreConfig',\n", + " 'Callable',\n", + " 'GcsBearerCredential',\n", + " 'ObjectStoreConfig',\n", + " 'S3Options',\n", + " 'S3StaticCredentials',\n", + " 'Storage',\n", + " '__builtins__',\n", + " '__cached__',\n", + " '__doc__',\n", + " '__file__',\n", + " '__loader__',\n", + " '__name__',\n", + " '__package__',\n", + " '__spec__',\n", + " 'azure_credentials',\n", + " 'azure_storage',\n", + " 'datetime',\n", + " 'gcs_credentials',\n", + " 'gcs_storage',\n", + " 'in_memory_storage',\n", + " 'local_filesystem_storage',\n", + " 'r2_storage',\n", + " 's3_credentials',\n", + " 's3_object_store_storage',\n", + " 's3_storage',\n", + " 's3_store',\n", + " 'tigris_storage']" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dir(icechunk.storage)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[0;31mSignature:\u001b[0m \u001b[0micechunk\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstorage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlocal_filesystem_storage\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpath\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m->\u001b[0m \u001b[0mStorage\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mDocstring:\u001b[0m\n", + "Create a Storage instance that saves data in the local file system.\n", + "\n", + "This Storage instance is not recommended for production data\n", + "\u001b[0;31mFile:\u001b[0m ~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/icechunk/storage.py\n", + "\u001b[0;31mType:\u001b[0m function" + ] + } + ], + "source": [ + "icechunk.storage.local_filesystem_storage?" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "storage = icechunk.storage.local_filesystem_storage(\n", + " './ic-oae/',\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "config = icechunk.RepositoryConfig.default()" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "config.set_virtual_chunk_container(icechunk.VirtualChunkContainer(\"s3\", \"s3://\", icechunk.s3_store(region=\"us-west-2\")))" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "credentials = icechunk.containers_credentials(s3=icechunk.s3_credentials(anonymous=True))" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [], + "source": [ + "repo = icechunk.Repository.create(storage, config, credentials)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "session = repo.writable_session(\"main\")" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "combined_vds_single_simulation.drop_vars(LOW_DIMENSIONAL_VARS, errors='ignore').virtualize.to_icechunk(session.store)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Y1N89MQGED1XNQMDMVDG'" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "session.commit(\"wrote references from two files generated by lambdas\")" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/6x/yyxxlhtd3db164lh5zgfhgp80000gn/T/ipykernel_56568/2050398136.py:1: FutureWarning: zarr_version is deprecated, use zarr_format\n", + " ds = xr.open_zarr(\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "ename": "IcechunkError", + "evalue": "Failed to decode variable '_nc4_non_coord_time': x no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n | \n | context:\n | 0: icechunk::store::get\n | with key=\"_nc4_non_coord_time/c/0/0\" byte_range=From(0)\n | at icechunk/src/store.rs:195\n | \n `-> no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mIcechunkError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/conventions.py:405\u001b[0m, in \u001b[0;36mdecode_cf_variables\u001b[0;34m(variables, attributes, concat_characters, mask_and_scale, decode_times, decode_coords, drop_variables, use_cftime, decode_timedelta)\u001b[0m\n\u001b[1;32m 404\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 405\u001b[0m new_vars[k] \u001b[38;5;241m=\u001b[39m decode_cf_variable(\n\u001b[1;32m 406\u001b[0m k,\n\u001b[1;32m 407\u001b[0m v,\n\u001b[1;32m 408\u001b[0m concat_characters\u001b[38;5;241m=\u001b[39m_item_or_default(concat_characters, k, \u001b[38;5;28;01mTrue\u001b[39;00m),\n\u001b[1;32m 409\u001b[0m mask_and_scale\u001b[38;5;241m=\u001b[39m_item_or_default(mask_and_scale, k, \u001b[38;5;28;01mTrue\u001b[39;00m),\n\u001b[1;32m 410\u001b[0m decode_times\u001b[38;5;241m=\u001b[39m_item_or_default(decode_times, k, \u001b[38;5;28;01mTrue\u001b[39;00m),\n\u001b[1;32m 411\u001b[0m stack_char_dim\u001b[38;5;241m=\u001b[39mstack_char_dim,\n\u001b[1;32m 412\u001b[0m use_cftime\u001b[38;5;241m=\u001b[39m_item_or_default(use_cftime, k, \u001b[38;5;28;01mNone\u001b[39;00m),\n\u001b[1;32m 413\u001b[0m decode_timedelta\u001b[38;5;241m=\u001b[39m_item_or_default(decode_timedelta, k, \u001b[38;5;28;01mNone\u001b[39;00m),\n\u001b[1;32m 414\u001b[0m )\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/conventions.py:238\u001b[0m, in \u001b[0;36mdecode_cf_variable\u001b[0;34m(name, var, concat_characters, mask_and_scale, decode_times, decode_endianness, stack_char_dim, use_cftime, decode_timedelta)\u001b[0m\n\u001b[1;32m 229\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(\n\u001b[1;32m 230\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUsage of \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124muse_cftime\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m as a kwarg is not allowed \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 231\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mif a \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mCFDatetimeCoder\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m instance is passed to \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 236\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m ds = xr.open_dataset(decode_times=time_coder)\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 237\u001b[0m )\n\u001b[0;32m--> 238\u001b[0m var \u001b[38;5;241m=\u001b[39m decode_times\u001b[38;5;241m.\u001b[39mdecode(var, name\u001b[38;5;241m=\u001b[39mname)\n\u001b[1;32m 240\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m decode_endianness \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m var\u001b[38;5;241m.\u001b[39mdtype\u001b[38;5;241m.\u001b[39misnative:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/coding/times.py:1380\u001b[0m, in \u001b[0;36mCFDatetimeCoder.decode\u001b[0;34m(self, variable, name)\u001b[0m\n\u001b[1;32m 1379\u001b[0m calendar \u001b[38;5;241m=\u001b[39m pop_to(attrs, encoding, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcalendar\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m-> 1380\u001b[0m dtype \u001b[38;5;241m=\u001b[39m _decode_cf_datetime_dtype(\n\u001b[1;32m 1381\u001b[0m data, units, calendar, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39muse_cftime, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtime_unit\n\u001b[1;32m 1382\u001b[0m )\n\u001b[1;32m 1383\u001b[0m transform \u001b[38;5;241m=\u001b[39m partial(\n\u001b[1;32m 1384\u001b[0m decode_cf_datetime,\n\u001b[1;32m 1385\u001b[0m units\u001b[38;5;241m=\u001b[39munits,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1388\u001b[0m time_unit\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtime_unit,\n\u001b[1;32m 1389\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/coding/times.py:326\u001b[0m, in \u001b[0;36m_decode_cf_datetime_dtype\u001b[0;34m(data, units, calendar, use_cftime, time_unit)\u001b[0m\n\u001b[1;32m 324\u001b[0m values \u001b[38;5;241m=\u001b[39m indexing\u001b[38;5;241m.\u001b[39mImplicitToExplicitIndexingAdapter(indexing\u001b[38;5;241m.\u001b[39mas_indexable(data))\n\u001b[1;32m 325\u001b[0m example_value \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39mconcatenate(\n\u001b[0;32m--> 326\u001b[0m [to_numpy(first_n_items(values, \u001b[38;5;241m1\u001b[39m)), to_numpy(last_item(values))]\n\u001b[1;32m 327\u001b[0m )\n\u001b[1;32m 329\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/formatting.py:97\u001b[0m, in \u001b[0;36mfirst_n_items\u001b[0;34m(array, n_desired)\u001b[0m\n\u001b[1;32m 96\u001b[0m array \u001b[38;5;241m=\u001b[39m array\u001b[38;5;241m.\u001b[39m_data\n\u001b[0;32m---> 97\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ravel(to_duck_array(array))[:n_desired]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/namedarray/pycompat.py:143\u001b[0m, in \u001b[0;36mto_duck_array\u001b[0;34m(data, **kwargs)\u001b[0m\n\u001b[1;32m 142\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data, ExplicitlyIndexed \u001b[38;5;241m|\u001b[39m ImplicitToExplicitIndexingAdapter):\n\u001b[0;32m--> 143\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m data\u001b[38;5;241m.\u001b[39mget_duck_array() \u001b[38;5;66;03m# type: ignore[no-untyped-call, no-any-return]\u001b[39;00m\n\u001b[1;32m 144\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m is_duck_array(data):\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:579\u001b[0m, in \u001b[0;36mImplicitToExplicitIndexingAdapter.get_duck_array\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 578\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_duck_array\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m--> 579\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39mget_duck_array()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:653\u001b[0m, in \u001b[0;36mLazilyIndexedArray.get_duck_array\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 650\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 651\u001b[0m \u001b[38;5;66;03m# If the array is not an ExplicitlyIndexedNDArrayMixin,\u001b[39;00m\n\u001b[1;32m 652\u001b[0m \u001b[38;5;66;03m# it may wrap a BackendArray so use its __getitem__\u001b[39;00m\n\u001b[0;32m--> 653\u001b[0m array \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray[\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey]\n\u001b[1;32m 655\u001b[0m \u001b[38;5;66;03m# self.array[self.key] is now a numpy array when\u001b[39;00m\n\u001b[1;32m 656\u001b[0m \u001b[38;5;66;03m# self.array is a BackendArray subclass\u001b[39;00m\n\u001b[1;32m 657\u001b[0m \u001b[38;5;66;03m# and self.key is BasicIndexer((slice(None, None, None),))\u001b[39;00m\n\u001b[1;32m 658\u001b[0m \u001b[38;5;66;03m# so we need the explicit check for ExplicitlyIndexed\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:223\u001b[0m, in \u001b[0;36mZarrArrayWrapper.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 222\u001b[0m method \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_oindex\n\u001b[0;32m--> 223\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m indexing\u001b[38;5;241m.\u001b[39mexplicit_indexing_adapter(\n\u001b[1;32m 224\u001b[0m key, array\u001b[38;5;241m.\u001b[39mshape, indexing\u001b[38;5;241m.\u001b[39mIndexingSupport\u001b[38;5;241m.\u001b[39mVECTORIZED, method\n\u001b[1;32m 225\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:1014\u001b[0m, in \u001b[0;36mexplicit_indexing_adapter\u001b[0;34m(key, shape, indexing_support, raw_indexing_method)\u001b[0m\n\u001b[1;32m 1013\u001b[0m raw_key, numpy_indices \u001b[38;5;241m=\u001b[39m decompose_indexer(key, shape, indexing_support)\n\u001b[0;32m-> 1014\u001b[0m result \u001b[38;5;241m=\u001b[39m raw_indexing_method(raw_key\u001b[38;5;241m.\u001b[39mtuple)\n\u001b[1;32m 1015\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m numpy_indices\u001b[38;5;241m.\u001b[39mtuple:\n\u001b[1;32m 1016\u001b[0m \u001b[38;5;66;03m# index the loaded duck array\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:213\u001b[0m, in \u001b[0;36mZarrArrayWrapper._getitem\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 212\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_getitem\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[0;32m--> 213\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_array[key]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:2425\u001b[0m, in \u001b[0;36mArray.__getitem__\u001b[0;34m(self, selection)\u001b[0m\n\u001b[1;32m 2424\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m is_pure_orthogonal_indexing(pure_selection, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mndim):\n\u001b[0;32m-> 2425\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_orthogonal_selection(pure_selection, fields\u001b[38;5;241m=\u001b[39mfields)\n\u001b[1;32m 2426\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/_compat.py:43\u001b[0m, in \u001b[0;36m_deprecate_positional_args.._inner_deprecate_positional_args..inner_f\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 42\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m extra_args \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[0;32m---> 43\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m f(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 45\u001b[0m \u001b[38;5;66;03m# extra_args > 0\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:2867\u001b[0m, in \u001b[0;36mArray.get_orthogonal_selection\u001b[0;34m(self, selection, out, fields, prototype)\u001b[0m\n\u001b[1;32m 2866\u001b[0m indexer \u001b[38;5;241m=\u001b[39m OrthogonalIndexer(selection, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mshape, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mchunk_grid)\n\u001b[0;32m-> 2867\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m sync(\n\u001b[1;32m 2868\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_async_array\u001b[38;5;241m.\u001b[39m_get_selection(\n\u001b[1;32m 2869\u001b[0m indexer\u001b[38;5;241m=\u001b[39mindexer, out\u001b[38;5;241m=\u001b[39mout, fields\u001b[38;5;241m=\u001b[39mfields, prototype\u001b[38;5;241m=\u001b[39mprototype\n\u001b[1;32m 2870\u001b[0m )\n\u001b[1;32m 2871\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/sync.py:163\u001b[0m, in \u001b[0;36msync\u001b[0;34m(coro, loop, timeout)\u001b[0m\n\u001b[1;32m 162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 164\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/sync.py:119\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(coro)\u001b[0m\n\u001b[1;32m 118\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 119\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 120\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:1287\u001b[0m, in \u001b[0;36mAsyncArray._get_selection\u001b[0;34m(self, indexer, prototype, out, fields)\u001b[0m\n\u001b[1;32m 1286\u001b[0m \u001b[38;5;66;03m# reading chunks and decoding them\u001b[39;00m\n\u001b[0;32m-> 1287\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcodec_pipeline\u001b[38;5;241m.\u001b[39mread(\n\u001b[1;32m 1288\u001b[0m [\n\u001b[1;32m 1289\u001b[0m (\n\u001b[1;32m 1290\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstore_path \u001b[38;5;241m/\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mencode_chunk_key(chunk_coords),\n\u001b[1;32m 1291\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mget_chunk_spec(chunk_coords, _config, prototype\u001b[38;5;241m=\u001b[39mprototype),\n\u001b[1;32m 1292\u001b[0m chunk_selection,\n\u001b[1;32m 1293\u001b[0m out_selection,\n\u001b[1;32m 1294\u001b[0m is_complete_chunk,\n\u001b[1;32m 1295\u001b[0m )\n\u001b[1;32m 1296\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m chunk_coords, chunk_selection, out_selection, is_complete_chunk \u001b[38;5;129;01min\u001b[39;00m indexer\n\u001b[1;32m 1297\u001b[0m ],\n\u001b[1;32m 1298\u001b[0m out_buffer,\n\u001b[1;32m 1299\u001b[0m drop_axes\u001b[38;5;241m=\u001b[39mindexer\u001b[38;5;241m.\u001b[39mdrop_axes,\n\u001b[1;32m 1300\u001b[0m )\n\u001b[1;32m 1301\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m out_buffer\u001b[38;5;241m.\u001b[39mas_ndarray_like()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/codec_pipeline.py:464\u001b[0m, in \u001b[0;36mBatchedCodecPipeline.read\u001b[0;34m(self, batch_info, out, drop_axes)\u001b[0m\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mread\u001b[39m(\n\u001b[1;32m 459\u001b[0m \u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 460\u001b[0m batch_info: Iterable[\u001b[38;5;28mtuple\u001b[39m[ByteGetter, ArraySpec, SelectorTuple, SelectorTuple, \u001b[38;5;28mbool\u001b[39m]],\n\u001b[1;32m 461\u001b[0m out: NDBuffer,\n\u001b[1;32m 462\u001b[0m drop_axes: \u001b[38;5;28mtuple\u001b[39m[\u001b[38;5;28mint\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m (),\n\u001b[1;32m 463\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 464\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m concurrent_map(\n\u001b[1;32m 465\u001b[0m [\n\u001b[1;32m 466\u001b[0m (single_batch_info, out, drop_axes)\n\u001b[1;32m 467\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m single_batch_info \u001b[38;5;129;01min\u001b[39;00m batched(batch_info, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbatch_size)\n\u001b[1;32m 468\u001b[0m ],\n\u001b[1;32m 469\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mread_batch,\n\u001b[1;32m 470\u001b[0m config\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124masync.concurrency\u001b[39m\u001b[38;5;124m\"\u001b[39m),\n\u001b[1;32m 471\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:68\u001b[0m, in \u001b[0;36mconcurrent_map\u001b[0;34m(items, func, limit)\u001b[0m\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n\u001b[0;32m---> 68\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39mgather(\u001b[38;5;241m*\u001b[39m[asyncio\u001b[38;5;241m.\u001b[39mensure_future(run(item)) \u001b[38;5;28;01mfor\u001b[39;00m item \u001b[38;5;129;01min\u001b[39;00m items])\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:66\u001b[0m, in \u001b[0;36mconcurrent_map..run\u001b[0;34m(item)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[0;32m---> 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/codec_pipeline.py:265\u001b[0m, in \u001b[0;36mBatchedCodecPipeline.read_batch\u001b[0;34m(self, batch_info, out, drop_axes)\u001b[0m\n\u001b[1;32m 264\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 265\u001b[0m chunk_bytes_batch \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m concurrent_map(\n\u001b[1;32m 266\u001b[0m [(byte_getter, array_spec\u001b[38;5;241m.\u001b[39mprototype) \u001b[38;5;28;01mfor\u001b[39;00m byte_getter, array_spec, \u001b[38;5;241m*\u001b[39m_ \u001b[38;5;129;01min\u001b[39;00m batch_info],\n\u001b[1;32m 267\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m byte_getter, prototype: byte_getter\u001b[38;5;241m.\u001b[39mget(prototype),\n\u001b[1;32m 268\u001b[0m config\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124masync.concurrency\u001b[39m\u001b[38;5;124m\"\u001b[39m),\n\u001b[1;32m 269\u001b[0m )\n\u001b[1;32m 270\u001b[0m chunk_array_batch \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdecode_batch(\n\u001b[1;32m 271\u001b[0m [\n\u001b[1;32m 272\u001b[0m (chunk_bytes, chunk_spec)\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 276\u001b[0m ],\n\u001b[1;32m 277\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:68\u001b[0m, in \u001b[0;36mconcurrent_map\u001b[0;34m(items, func, limit)\u001b[0m\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n\u001b[0;32m---> 68\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39mgather(\u001b[38;5;241m*\u001b[39m[asyncio\u001b[38;5;241m.\u001b[39mensure_future(run(item)) \u001b[38;5;28;01mfor\u001b[39;00m item \u001b[38;5;129;01min\u001b[39;00m items])\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:66\u001b[0m, in \u001b[0;36mconcurrent_map..run\u001b[0;34m(item)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[0;32m---> 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/storage/_common.py:124\u001b[0m, in \u001b[0;36mStorePath.get\u001b[0;34m(self, prototype, byte_range)\u001b[0m\n\u001b[1;32m 123\u001b[0m prototype \u001b[38;5;241m=\u001b[39m default_buffer_prototype()\n\u001b[0;32m--> 124\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpath, prototype\u001b[38;5;241m=\u001b[39mprototype, byte_range\u001b[38;5;241m=\u001b[39mbyte_range)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/icechunk/store.py:146\u001b[0m, in \u001b[0;36mIcechunkStore.get\u001b[0;34m(self, key, prototype, byte_range)\u001b[0m\n\u001b[1;32m 145\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 146\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_store\u001b[38;5;241m.\u001b[39mget(key, _byte_request_to_tuple(byte_range))\n\u001b[1;32m 147\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m _e:\n\u001b[1;32m 148\u001b[0m \u001b[38;5;66;03m# Zarr python expects None to be returned if the key does not exist\u001b[39;00m\n\u001b[1;32m 149\u001b[0m \u001b[38;5;66;03m# but an IcechunkStore returns an error if the key does not exist\u001b[39;00m\n", + "\u001b[0;31mIcechunkError\u001b[0m: x no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n | \n | context:\n | 0: icechunk::store::get\n | with key=\"_nc4_non_coord_time/c/0/0\" byte_range=From(0)\n | at icechunk/src/store.rs:195\n | \n `-> no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mIcechunkError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[42], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m ds \u001b[38;5;241m=\u001b[39m xr\u001b[38;5;241m.\u001b[39mopen_zarr(\n\u001b[1;32m 2\u001b[0m session\u001b[38;5;241m.\u001b[39mstore,\n\u001b[1;32m 3\u001b[0m zarr_version\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m3\u001b[39m,\n\u001b[1;32m 4\u001b[0m consolidated\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 5\u001b[0m chunks\u001b[38;5;241m=\u001b[39m{},\n\u001b[1;32m 6\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:1535\u001b[0m, in \u001b[0;36mopen_zarr\u001b[0;34m(store, group, synchronizer, chunks, decode_cf, mask_and_scale, decode_times, concat_characters, decode_coords, drop_variables, consolidated, overwrite_encoded_chunks, chunk_store, storage_options, decode_timedelta, use_cftime, zarr_version, zarr_format, use_zarr_fill_value_as_mask, chunked_array_type, from_array_kwargs, **kwargs)\u001b[0m\n\u001b[1;32m 1521\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(\n\u001b[1;32m 1522\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mopen_zarr() got unexpected keyword arguments \u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;241m+\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m,\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(kwargs\u001b[38;5;241m.\u001b[39mkeys())\n\u001b[1;32m 1523\u001b[0m )\n\u001b[1;32m 1525\u001b[0m backend_kwargs \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 1526\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msynchronizer\u001b[39m\u001b[38;5;124m\"\u001b[39m: synchronizer,\n\u001b[1;32m 1527\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mconsolidated\u001b[39m\u001b[38;5;124m\"\u001b[39m: consolidated,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1532\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mzarr_format\u001b[39m\u001b[38;5;124m\"\u001b[39m: zarr_format,\n\u001b[1;32m 1533\u001b[0m }\n\u001b[0;32m-> 1535\u001b[0m ds \u001b[38;5;241m=\u001b[39m open_dataset(\n\u001b[1;32m 1536\u001b[0m filename_or_obj\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 1537\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 1538\u001b[0m decode_cf\u001b[38;5;241m=\u001b[39mdecode_cf,\n\u001b[1;32m 1539\u001b[0m mask_and_scale\u001b[38;5;241m=\u001b[39mmask_and_scale,\n\u001b[1;32m 1540\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 1541\u001b[0m concat_characters\u001b[38;5;241m=\u001b[39mconcat_characters,\n\u001b[1;32m 1542\u001b[0m decode_coords\u001b[38;5;241m=\u001b[39mdecode_coords,\n\u001b[1;32m 1543\u001b[0m engine\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mzarr\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 1544\u001b[0m chunks\u001b[38;5;241m=\u001b[39mchunks,\n\u001b[1;32m 1545\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 1546\u001b[0m chunked_array_type\u001b[38;5;241m=\u001b[39mchunked_array_type,\n\u001b[1;32m 1547\u001b[0m from_array_kwargs\u001b[38;5;241m=\u001b[39mfrom_array_kwargs,\n\u001b[1;32m 1548\u001b[0m backend_kwargs\u001b[38;5;241m=\u001b[39mbackend_kwargs,\n\u001b[1;32m 1549\u001b[0m decode_timedelta\u001b[38;5;241m=\u001b[39mdecode_timedelta,\n\u001b[1;32m 1550\u001b[0m use_cftime\u001b[38;5;241m=\u001b[39muse_cftime,\n\u001b[1;32m 1551\u001b[0m zarr_version\u001b[38;5;241m=\u001b[39mzarr_version,\n\u001b[1;32m 1552\u001b[0m use_zarr_fill_value_as_mask\u001b[38;5;241m=\u001b[39muse_zarr_fill_value_as_mask,\n\u001b[1;32m 1553\u001b[0m )\n\u001b[1;32m 1554\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/api.py:687\u001b[0m, in \u001b[0;36mopen_dataset\u001b[0;34m(filename_or_obj, engine, chunks, cache, decode_cf, mask_and_scale, decode_times, decode_timedelta, use_cftime, concat_characters, decode_coords, drop_variables, inline_array, chunked_array_type, from_array_kwargs, backend_kwargs, **kwargs)\u001b[0m\n\u001b[1;32m 675\u001b[0m decoders \u001b[38;5;241m=\u001b[39m _resolve_decoders_kwargs(\n\u001b[1;32m 676\u001b[0m decode_cf,\n\u001b[1;32m 677\u001b[0m open_backend_dataset_parameters\u001b[38;5;241m=\u001b[39mbackend\u001b[38;5;241m.\u001b[39mopen_dataset_parameters,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 683\u001b[0m decode_coords\u001b[38;5;241m=\u001b[39mdecode_coords,\n\u001b[1;32m 684\u001b[0m )\n\u001b[1;32m 686\u001b[0m overwrite_encoded_chunks \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124moverwrite_encoded_chunks\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m)\n\u001b[0;32m--> 687\u001b[0m backend_ds \u001b[38;5;241m=\u001b[39m backend\u001b[38;5;241m.\u001b[39mopen_dataset(\n\u001b[1;32m 688\u001b[0m filename_or_obj,\n\u001b[1;32m 689\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 690\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mdecoders,\n\u001b[1;32m 691\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs,\n\u001b[1;32m 692\u001b[0m )\n\u001b[1;32m 693\u001b[0m ds \u001b[38;5;241m=\u001b[39m _dataset_from_backend_dataset(\n\u001b[1;32m 694\u001b[0m backend_ds,\n\u001b[1;32m 695\u001b[0m filename_or_obj,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 705\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs,\n\u001b[1;32m 706\u001b[0m )\n\u001b[1;32m 707\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:1625\u001b[0m, in \u001b[0;36mZarrBackendEntrypoint.open_dataset\u001b[0;34m(self, filename_or_obj, mask_and_scale, decode_times, concat_characters, decode_coords, drop_variables, use_cftime, decode_timedelta, group, mode, synchronizer, consolidated, chunk_store, storage_options, zarr_version, zarr_format, store, engine, use_zarr_fill_value_as_mask, cache_members)\u001b[0m\n\u001b[1;32m 1623\u001b[0m store_entrypoint \u001b[38;5;241m=\u001b[39m StoreBackendEntrypoint()\n\u001b[1;32m 1624\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m close_on_error(store):\n\u001b[0;32m-> 1625\u001b[0m ds \u001b[38;5;241m=\u001b[39m store_entrypoint\u001b[38;5;241m.\u001b[39mopen_dataset(\n\u001b[1;32m 1626\u001b[0m store,\n\u001b[1;32m 1627\u001b[0m mask_and_scale\u001b[38;5;241m=\u001b[39mmask_and_scale,\n\u001b[1;32m 1628\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 1629\u001b[0m concat_characters\u001b[38;5;241m=\u001b[39mconcat_characters,\n\u001b[1;32m 1630\u001b[0m decode_coords\u001b[38;5;241m=\u001b[39mdecode_coords,\n\u001b[1;32m 1631\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 1632\u001b[0m use_cftime\u001b[38;5;241m=\u001b[39muse_cftime,\n\u001b[1;32m 1633\u001b[0m decode_timedelta\u001b[38;5;241m=\u001b[39mdecode_timedelta,\n\u001b[1;32m 1634\u001b[0m )\n\u001b[1;32m 1635\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/store.py:47\u001b[0m, in \u001b[0;36mStoreBackendEntrypoint.open_dataset\u001b[0;34m(self, filename_or_obj, mask_and_scale, decode_times, concat_characters, decode_coords, drop_variables, use_cftime, decode_timedelta)\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[38;5;28mvars\u001b[39m, attrs \u001b[38;5;241m=\u001b[39m filename_or_obj\u001b[38;5;241m.\u001b[39mload()\n\u001b[1;32m 45\u001b[0m encoding \u001b[38;5;241m=\u001b[39m filename_or_obj\u001b[38;5;241m.\u001b[39mget_encoding()\n\u001b[0;32m---> 47\u001b[0m \u001b[38;5;28mvars\u001b[39m, attrs, coord_names \u001b[38;5;241m=\u001b[39m conventions\u001b[38;5;241m.\u001b[39mdecode_cf_variables(\n\u001b[1;32m 48\u001b[0m \u001b[38;5;28mvars\u001b[39m,\n\u001b[1;32m 49\u001b[0m attrs,\n\u001b[1;32m 50\u001b[0m mask_and_scale\u001b[38;5;241m=\u001b[39mmask_and_scale,\n\u001b[1;32m 51\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 52\u001b[0m concat_characters\u001b[38;5;241m=\u001b[39mconcat_characters,\n\u001b[1;32m 53\u001b[0m decode_coords\u001b[38;5;241m=\u001b[39mdecode_coords,\n\u001b[1;32m 54\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 55\u001b[0m use_cftime\u001b[38;5;241m=\u001b[39muse_cftime,\n\u001b[1;32m 56\u001b[0m decode_timedelta\u001b[38;5;241m=\u001b[39mdecode_timedelta,\n\u001b[1;32m 57\u001b[0m )\n\u001b[1;32m 59\u001b[0m ds \u001b[38;5;241m=\u001b[39m Dataset(\u001b[38;5;28mvars\u001b[39m, attrs\u001b[38;5;241m=\u001b[39mattrs)\n\u001b[1;32m 60\u001b[0m ds \u001b[38;5;241m=\u001b[39m ds\u001b[38;5;241m.\u001b[39mset_coords(coord_names\u001b[38;5;241m.\u001b[39mintersection(\u001b[38;5;28mvars\u001b[39m))\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/conventions.py:416\u001b[0m, in \u001b[0;36mdecode_cf_variables\u001b[0;34m(variables, attributes, concat_characters, mask_and_scale, decode_times, decode_coords, drop_variables, use_cftime, decode_timedelta)\u001b[0m\n\u001b[1;32m 405\u001b[0m new_vars[k] \u001b[38;5;241m=\u001b[39m decode_cf_variable(\n\u001b[1;32m 406\u001b[0m k,\n\u001b[1;32m 407\u001b[0m v,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 413\u001b[0m decode_timedelta\u001b[38;5;241m=\u001b[39m_item_or_default(decode_timedelta, k, \u001b[38;5;28;01mNone\u001b[39;00m),\n\u001b[1;32m 414\u001b[0m )\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m--> 416\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;28mtype\u001b[39m(e)(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mFailed to decode variable \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mk\u001b[38;5;132;01m!r}\u001b[39;00m\u001b[38;5;124m: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00me\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01me\u001b[39;00m\n\u001b[1;32m 417\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m decode_coords \u001b[38;5;129;01min\u001b[39;00m [\u001b[38;5;28;01mTrue\u001b[39;00m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcoordinates\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mall\u001b[39m\u001b[38;5;124m\"\u001b[39m]:\n\u001b[1;32m 418\u001b[0m var_attrs \u001b[38;5;241m=\u001b[39m new_vars[k]\u001b[38;5;241m.\u001b[39mattrs\n", + "\u001b[0;31mIcechunkError\u001b[0m: Failed to decode variable '_nc4_non_coord_time': x no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n | \n | context:\n | 0: icechunk::store::get\n | with key=\"_nc4_non_coord_time/c/0/0\" byte_range=From(0)\n | at icechunk/src/store.rs:195\n | \n `-> no virtual chunk container can handle the chunk location (https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc)\n" + ] + } + ], + "source": [ + "ds = xr.open_zarr(\n", + " session.store,\n", + " zarr_version=3,\n", + " consolidated=False,\n", + " chunks={},\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 326MB\n",
+       "Dimensions:                     (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, polygon_id: 1, injection_date: 1,\n",
+       "                                 elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n",
+       "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "    days_in_norm_year           float64 8B ...\n",
+       "    ...                          ...\n",
+       "    HTE                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUS                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    HUW                         (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLE                       (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    ANGLET                      (nlat, nlon) float64 983kB ManifestArray<shap...\n",
+       "    rho_sw                      float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 8B Man...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 326MB\n", + "Dimensions: (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, polygon_id: 1, injection_date: 1,\n", + " elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n", + "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " days_in_norm_year float64 8B ...\n", + " ... ...\n", + " HTE (nlat, nlon) float64 983kB ManifestArray the variable values are ..." + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "combined_vds_single_simulation" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "ename": "NotImplementedError", + "evalue": "Scalar arrays are not yet supported by ManifestStore", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNotImplementedError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[19], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m combined_vds_single_simulation\u001b[38;5;241m.\u001b[39mvirtualize\u001b[38;5;241m.\u001b[39mnbytes \u001b[38;5;241m/\u001b[39m \u001b[38;5;241m1e6\u001b[39m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/accessor.py:229\u001b[0m, in \u001b[0;36mVirtualiZarrDatasetAccessor.nbytes\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 218\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mnbytes\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mint\u001b[39m:\n\u001b[1;32m 220\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 221\u001b[0m \u001b[38;5;124;03m Size required to hold these references in memory in bytes.\u001b[39;00m\n\u001b[1;32m 222\u001b[0m \n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 227\u001b[0m \u001b[38;5;124;03m In-memory (loadable) variables are included in the total using xarray's normal ``.nbytes`` method.\u001b[39;00m\n\u001b[1;32m 228\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m--> 229\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28msum\u001b[39m(\n\u001b[1;32m 230\u001b[0m var\u001b[38;5;241m.\u001b[39mdata\u001b[38;5;241m.\u001b[39mnbytes_virtual\n\u001b[1;32m 231\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(var\u001b[38;5;241m.\u001b[39mdata, ManifestArray)\n\u001b[1;32m 232\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m var\u001b[38;5;241m.\u001b[39mnbytes\n\u001b[1;32m 233\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m var \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mds\u001b[38;5;241m.\u001b[39mvariables\u001b[38;5;241m.\u001b[39mvalues()\n\u001b[1;32m 234\u001b[0m )\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/accessor.py:231\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 218\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mnbytes\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mint\u001b[39m:\n\u001b[1;32m 220\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 221\u001b[0m \u001b[38;5;124;03m Size required to hold these references in memory in bytes.\u001b[39;00m\n\u001b[1;32m 222\u001b[0m \n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 227\u001b[0m \u001b[38;5;124;03m In-memory (loadable) variables are included in the total using xarray's normal ``.nbytes`` method.\u001b[39;00m\n\u001b[1;32m 228\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[1;32m 229\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28msum\u001b[39m(\n\u001b[1;32m 230\u001b[0m var\u001b[38;5;241m.\u001b[39mdata\u001b[38;5;241m.\u001b[39mnbytes_virtual\n\u001b[0;32m--> 231\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(var\u001b[38;5;241m.\u001b[39mdata, ManifestArray)\n\u001b[1;32m 232\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m var\u001b[38;5;241m.\u001b[39mnbytes\n\u001b[1;32m 233\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m var \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mds\u001b[38;5;241m.\u001b[39mvariables\u001b[38;5;241m.\u001b[39mvalues()\n\u001b[1;32m 234\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/variable.py:416\u001b[0m, in \u001b[0;36mVariable.data\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 414\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_data\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_data, indexing\u001b[38;5;241m.\u001b[39mExplicitlyIndexed):\n\u001b[0;32m--> 416\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_data\u001b[38;5;241m.\u001b[39mget_duck_array()\n\u001b[1;32m 417\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 418\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mvalues\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:836\u001b[0m, in \u001b[0;36mMemoryCachedArray.get_duck_array\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 835\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_duck_array\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m--> 836\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ensure_cached()\n\u001b[1;32m 837\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39mget_duck_array()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:833\u001b[0m, in \u001b[0;36mMemoryCachedArray._ensure_cached\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_ensure_cached\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m--> 833\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray \u001b[38;5;241m=\u001b[39m as_indexable(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39mget_duck_array())\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:790\u001b[0m, in \u001b[0;36mCopyOnWriteArray.get_duck_array\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 789\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mget_duck_array\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m--> 790\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray\u001b[38;5;241m.\u001b[39mget_duck_array()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:653\u001b[0m, in \u001b[0;36mLazilyIndexedArray.get_duck_array\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 649\u001b[0m array \u001b[38;5;241m=\u001b[39m apply_indexer(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey)\n\u001b[1;32m 650\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 651\u001b[0m \u001b[38;5;66;03m# If the array is not an ExplicitlyIndexedNDArrayMixin,\u001b[39;00m\n\u001b[1;32m 652\u001b[0m \u001b[38;5;66;03m# it may wrap a BackendArray so use its __getitem__\u001b[39;00m\n\u001b[0;32m--> 653\u001b[0m array \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39marray[\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mkey]\n\u001b[1;32m 655\u001b[0m \u001b[38;5;66;03m# self.array[self.key] is now a numpy array when\u001b[39;00m\n\u001b[1;32m 656\u001b[0m \u001b[38;5;66;03m# self.array is a BackendArray subclass\u001b[39;00m\n\u001b[1;32m 657\u001b[0m \u001b[38;5;66;03m# and self.key is BasicIndexer((slice(None, None, None),))\u001b[39;00m\n\u001b[1;32m 658\u001b[0m \u001b[38;5;66;03m# so we need the explicit check for ExplicitlyIndexed\u001b[39;00m\n\u001b[1;32m 659\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(array, ExplicitlyIndexed):\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:223\u001b[0m, in \u001b[0;36mZarrArrayWrapper.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 221\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, indexing\u001b[38;5;241m.\u001b[39mOuterIndexer):\n\u001b[1;32m 222\u001b[0m method \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_oindex\n\u001b[0;32m--> 223\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m indexing\u001b[38;5;241m.\u001b[39mexplicit_indexing_adapter(\n\u001b[1;32m 224\u001b[0m key, array\u001b[38;5;241m.\u001b[39mshape, indexing\u001b[38;5;241m.\u001b[39mIndexingSupport\u001b[38;5;241m.\u001b[39mVECTORIZED, method\n\u001b[1;32m 225\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/core/indexing.py:1014\u001b[0m, in \u001b[0;36mexplicit_indexing_adapter\u001b[0;34m(key, shape, indexing_support, raw_indexing_method)\u001b[0m\n\u001b[1;32m 992\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"Support explicit indexing by delegating to a raw indexing method.\u001b[39;00m\n\u001b[1;32m 993\u001b[0m \n\u001b[1;32m 994\u001b[0m \u001b[38;5;124;03mOuter and/or vectorized indexers are supported by indexing a second time\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1011\u001b[0m \u001b[38;5;124;03mIndexing result, in the form of a duck numpy-array.\u001b[39;00m\n\u001b[1;32m 1012\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 1013\u001b[0m raw_key, numpy_indices \u001b[38;5;241m=\u001b[39m decompose_indexer(key, shape, indexing_support)\n\u001b[0;32m-> 1014\u001b[0m result \u001b[38;5;241m=\u001b[39m raw_indexing_method(raw_key\u001b[38;5;241m.\u001b[39mtuple)\n\u001b[1;32m 1015\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m numpy_indices\u001b[38;5;241m.\u001b[39mtuple:\n\u001b[1;32m 1016\u001b[0m \u001b[38;5;66;03m# index the loaded duck array\u001b[39;00m\n\u001b[1;32m 1017\u001b[0m indexable \u001b[38;5;241m=\u001b[39m as_indexable(result)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/xarray/backends/zarr.py:213\u001b[0m, in \u001b[0;36mZarrArrayWrapper._getitem\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 212\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_getitem\u001b[39m(\u001b[38;5;28mself\u001b[39m, key):\n\u001b[0;32m--> 213\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_array[key]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:2427\u001b[0m, in \u001b[0;36mArray.__getitem__\u001b[0;34m(self, selection)\u001b[0m\n\u001b[1;32m 2425\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_orthogonal_selection(pure_selection, fields\u001b[38;5;241m=\u001b[39mfields)\n\u001b[1;32m 2426\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 2427\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_basic_selection(cast(BasicSelection, pure_selection), fields\u001b[38;5;241m=\u001b[39mfields)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/_compat.py:43\u001b[0m, in \u001b[0;36m_deprecate_positional_args.._inner_deprecate_positional_args..inner_f\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 41\u001b[0m extra_args \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(args) \u001b[38;5;241m-\u001b[39m \u001b[38;5;28mlen\u001b[39m(all_args)\n\u001b[1;32m 42\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m extra_args \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[0;32m---> 43\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m f(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 45\u001b[0m \u001b[38;5;66;03m# extra_args > 0\u001b[39;00m\n\u001b[1;32m 46\u001b[0m args_msg \u001b[38;5;241m=\u001b[39m [\n\u001b[1;32m 47\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m=\u001b[39m\u001b[38;5;132;01m{\u001b[39;00marg\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 48\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m name, arg \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mzip\u001b[39m(kwonly_args[:extra_args], args[\u001b[38;5;241m-\u001b[39mextra_args:], strict\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[1;32m 49\u001b[0m ]\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:2643\u001b[0m, in \u001b[0;36mArray.get_basic_selection\u001b[0;34m(self, selection, out, prototype, fields)\u001b[0m\n\u001b[1;32m 2641\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m prototype \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 2642\u001b[0m prototype \u001b[38;5;241m=\u001b[39m default_buffer_prototype()\n\u001b[0;32m-> 2643\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m sync(\n\u001b[1;32m 2644\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_async_array\u001b[38;5;241m.\u001b[39m_get_selection(\n\u001b[1;32m 2645\u001b[0m BasicIndexer(selection, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mshape, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mchunk_grid),\n\u001b[1;32m 2646\u001b[0m out\u001b[38;5;241m=\u001b[39mout,\n\u001b[1;32m 2647\u001b[0m fields\u001b[38;5;241m=\u001b[39mfields,\n\u001b[1;32m 2648\u001b[0m prototype\u001b[38;5;241m=\u001b[39mprototype,\n\u001b[1;32m 2649\u001b[0m )\n\u001b[1;32m 2650\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/sync.py:163\u001b[0m, in \u001b[0;36msync\u001b[0;34m(coro, loop, timeout)\u001b[0m\n\u001b[1;32m 160\u001b[0m return_result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mnext\u001b[39m(\u001b[38;5;28miter\u001b[39m(finished))\u001b[38;5;241m.\u001b[39mresult()\n\u001b[1;32m 162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 164\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 165\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m return_result\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/sync.py:119\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(coro)\u001b[0m\n\u001b[1;32m 114\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 115\u001b[0m \u001b[38;5;124;03mAwait a coroutine and return the result of running it. If awaiting the coroutine raises an\u001b[39;00m\n\u001b[1;32m 116\u001b[0m \u001b[38;5;124;03mexception, the exception will be returned.\u001b[39;00m\n\u001b[1;32m 117\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 118\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 119\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 120\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n\u001b[1;32m 121\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ex\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/array.py:1287\u001b[0m, in \u001b[0;36mAsyncArray._get_selection\u001b[0;34m(self, indexer, prototype, out, fields)\u001b[0m\n\u001b[1;32m 1284\u001b[0m _config \u001b[38;5;241m=\u001b[39m replace(_config, order\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39morder)\n\u001b[1;32m 1286\u001b[0m \u001b[38;5;66;03m# reading chunks and decoding them\u001b[39;00m\n\u001b[0;32m-> 1287\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcodec_pipeline\u001b[38;5;241m.\u001b[39mread(\n\u001b[1;32m 1288\u001b[0m [\n\u001b[1;32m 1289\u001b[0m (\n\u001b[1;32m 1290\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstore_path \u001b[38;5;241m/\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mencode_chunk_key(chunk_coords),\n\u001b[1;32m 1291\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mget_chunk_spec(chunk_coords, _config, prototype\u001b[38;5;241m=\u001b[39mprototype),\n\u001b[1;32m 1292\u001b[0m chunk_selection,\n\u001b[1;32m 1293\u001b[0m out_selection,\n\u001b[1;32m 1294\u001b[0m is_complete_chunk,\n\u001b[1;32m 1295\u001b[0m )\n\u001b[1;32m 1296\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m chunk_coords, chunk_selection, out_selection, is_complete_chunk \u001b[38;5;129;01min\u001b[39;00m indexer\n\u001b[1;32m 1297\u001b[0m ],\n\u001b[1;32m 1298\u001b[0m out_buffer,\n\u001b[1;32m 1299\u001b[0m drop_axes\u001b[38;5;241m=\u001b[39mindexer\u001b[38;5;241m.\u001b[39mdrop_axes,\n\u001b[1;32m 1300\u001b[0m )\n\u001b[1;32m 1301\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m out_buffer\u001b[38;5;241m.\u001b[39mas_ndarray_like()\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/codec_pipeline.py:464\u001b[0m, in \u001b[0;36mBatchedCodecPipeline.read\u001b[0;34m(self, batch_info, out, drop_axes)\u001b[0m\n\u001b[1;32m 458\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mread\u001b[39m(\n\u001b[1;32m 459\u001b[0m \u001b[38;5;28mself\u001b[39m,\n\u001b[1;32m 460\u001b[0m batch_info: Iterable[\u001b[38;5;28mtuple\u001b[39m[ByteGetter, ArraySpec, SelectorTuple, SelectorTuple, \u001b[38;5;28mbool\u001b[39m]],\n\u001b[1;32m 461\u001b[0m out: NDBuffer,\n\u001b[1;32m 462\u001b[0m drop_axes: \u001b[38;5;28mtuple\u001b[39m[\u001b[38;5;28mint\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m (),\n\u001b[1;32m 463\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 464\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m concurrent_map(\n\u001b[1;32m 465\u001b[0m [\n\u001b[1;32m 466\u001b[0m (single_batch_info, out, drop_axes)\n\u001b[1;32m 467\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m single_batch_info \u001b[38;5;129;01min\u001b[39;00m batched(batch_info, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbatch_size)\n\u001b[1;32m 468\u001b[0m ],\n\u001b[1;32m 469\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mread_batch,\n\u001b[1;32m 470\u001b[0m config\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124masync.concurrency\u001b[39m\u001b[38;5;124m\"\u001b[39m),\n\u001b[1;32m 471\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:68\u001b[0m, in \u001b[0;36mconcurrent_map\u001b[0;34m(items, func, limit)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n\u001b[0;32m---> 68\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39mgather(\u001b[38;5;241m*\u001b[39m[asyncio\u001b[38;5;241m.\u001b[39mensure_future(run(item)) \u001b[38;5;28;01mfor\u001b[39;00m item \u001b[38;5;129;01min\u001b[39;00m items])\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:66\u001b[0m, in \u001b[0;36mconcurrent_map..run\u001b[0;34m(item)\u001b[0m\n\u001b[1;32m 64\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mrun\u001b[39m(item: \u001b[38;5;28mtuple\u001b[39m[Any]) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m V:\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[0;32m---> 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/codec_pipeline.py:265\u001b[0m, in \u001b[0;36mBatchedCodecPipeline.read_batch\u001b[0;34m(self, batch_info, out, drop_axes)\u001b[0m\n\u001b[1;32m 263\u001b[0m out[out_selection] \u001b[38;5;241m=\u001b[39m fill_value_or_default(chunk_spec)\n\u001b[1;32m 264\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 265\u001b[0m chunk_bytes_batch \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m concurrent_map(\n\u001b[1;32m 266\u001b[0m [(byte_getter, array_spec\u001b[38;5;241m.\u001b[39mprototype) \u001b[38;5;28;01mfor\u001b[39;00m byte_getter, array_spec, \u001b[38;5;241m*\u001b[39m_ \u001b[38;5;129;01min\u001b[39;00m batch_info],\n\u001b[1;32m 267\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m byte_getter, prototype: byte_getter\u001b[38;5;241m.\u001b[39mget(prototype),\n\u001b[1;32m 268\u001b[0m config\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124masync.concurrency\u001b[39m\u001b[38;5;124m\"\u001b[39m),\n\u001b[1;32m 269\u001b[0m )\n\u001b[1;32m 270\u001b[0m chunk_array_batch \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdecode_batch(\n\u001b[1;32m 271\u001b[0m [\n\u001b[1;32m 272\u001b[0m (chunk_bytes, chunk_spec)\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 276\u001b[0m ],\n\u001b[1;32m 277\u001b[0m )\n\u001b[1;32m 278\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m chunk_array, (_, chunk_spec, chunk_selection, out_selection, _) \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mzip\u001b[39m(\n\u001b[1;32m 279\u001b[0m chunk_array_batch, batch_info, strict\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[1;32m 280\u001b[0m ):\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:68\u001b[0m, in \u001b[0;36mconcurrent_map\u001b[0;34m(items, func, limit)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n\u001b[0;32m---> 68\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39mgather(\u001b[38;5;241m*\u001b[39m[asyncio\u001b[38;5;241m.\u001b[39mensure_future(run(item)) \u001b[38;5;28;01mfor\u001b[39;00m item \u001b[38;5;129;01min\u001b[39;00m items])\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/core/common.py:66\u001b[0m, in \u001b[0;36mconcurrent_map..run\u001b[0;34m(item)\u001b[0m\n\u001b[1;32m 64\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mrun\u001b[39m(item: \u001b[38;5;28mtuple\u001b[39m[Any]) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m V:\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mwith\u001b[39;00m sem:\n\u001b[0;32m---> 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39mitem)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/zarr/storage/_common.py:124\u001b[0m, in \u001b[0;36mStorePath.get\u001b[0;34m(self, prototype, byte_range)\u001b[0m\n\u001b[1;32m 122\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m prototype \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 123\u001b[0m prototype \u001b[38;5;241m=\u001b[39m default_buffer_prototype()\n\u001b[0;32m--> 124\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstore\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpath, prototype\u001b[38;5;241m=\u001b[39mprototype, byte_range\u001b[38;5;241m=\u001b[39mbyte_range)\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:300\u001b[0m, in \u001b[0;36mManifestStore.get\u001b[0;34m(self, key, prototype, byte_range)\u001b[0m\n\u001b[1;32m 297\u001b[0m marr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_group\u001b[38;5;241m.\u001b[39marrays[var]\n\u001b[1;32m 298\u001b[0m manifest \u001b[38;5;241m=\u001b[39m marr\u001b[38;5;241m.\u001b[39mmanifest\n\u001b[0;32m--> 300\u001b[0m chunk_indexes \u001b[38;5;241m=\u001b[39m parse_manifest_index(\n\u001b[1;32m 301\u001b[0m key, marr\u001b[38;5;241m.\u001b[39mmetadata\u001b[38;5;241m.\u001b[39mchunk_key_encoding\u001b[38;5;241m.\u001b[39mseparator\n\u001b[1;32m 302\u001b[0m )\n\u001b[1;32m 303\u001b[0m path \u001b[38;5;241m=\u001b[39m manifest\u001b[38;5;241m.\u001b[39m_paths[\u001b[38;5;241m*\u001b[39mchunk_indexes]\n\u001b[1;32m 304\u001b[0m offset \u001b[38;5;241m=\u001b[39m manifest\u001b[38;5;241m.\u001b[39m_offsets[\u001b[38;5;241m*\u001b[39mchunk_indexes]\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/manifests/store.py:121\u001b[0m, in \u001b[0;36mparse_manifest_index\u001b[0;34m(key, chunk_key_encoding)\u001b[0m\n\u001b[1;32m 104\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 105\u001b[0m \u001b[38;5;124;03mSplits `key` provided to a zarr store into the variable indicated\u001b[39;00m\n\u001b[1;32m 106\u001b[0m \u001b[38;5;124;03mby the first part and the chunk index from the 3rd through last parts,\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 117\u001b[0m \u001b[38;5;124;03mtuple containing chunk indexes\u001b[39;00m\n\u001b[1;32m 118\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 119\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key\u001b[38;5;241m.\u001b[39mendswith(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mc\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[1;32m 120\u001b[0m \u001b[38;5;66;03m# Scalar arrays hold the data in the \"c\" key\u001b[39;00m\n\u001b[0;32m--> 121\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\n\u001b[1;32m 122\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mScalar arrays are not yet supported by ManifestStore\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 123\u001b[0m )\n\u001b[1;32m 124\u001b[0m parts \u001b[38;5;241m=\u001b[39m key\u001b[38;5;241m.\u001b[39msplit(\n\u001b[1;32m 125\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mc/\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 126\u001b[0m ) \u001b[38;5;66;03m# TODO: Open an issue upstream about the Zarr spec indicating this should be f\"c{chunk_key_encoding}\" rather than always \"c/\"\u001b[39;00m\n\u001b[1;32m 127\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mtuple\u001b[39m(\u001b[38;5;28mint\u001b[39m(ind) \u001b[38;5;28;01mfor\u001b[39;00m ind \u001b[38;5;129;01min\u001b[39;00m parts[\u001b[38;5;241m1\u001b[39m]\u001b[38;5;241m.\u001b[39msplit(chunk_key_encoding))\n", + "\u001b[0;31mNotImplementedError\u001b[0m: Scalar arrays are not yet supported by ManifestStore" + ] + } + ], + "source": [ + "combined_vds_single_simulation.virtualize.nbytes / 1e6" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Obtaining file:///Users/tom/Documents/Work/Code/VirtualiZarr\n", + " Installing build dependencies ... \u001b[?25ldone\n", + "\u001b[?25h Checking if build backend supports build_editable ... \u001b[?25ldone\n", + "\u001b[?25h Getting requirements to build editable ... \u001b[?25ldone\n", + "\u001b[?25h Preparing editable metadata (pyproject.toml) ... \u001b[?25ldone\n", + "\u001b[?25hRequirement already satisfied: xarray>=2025.3.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2025.3.1)\n", + "Requirement already satisfied: numpy>=2.0.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2.2.4)\n", + "Requirement already satisfied: universal-pathlib in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (0.2.6)\n", + "Requirement already satisfied: numcodecs>=0.15.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (0.16.0)\n", + "Requirement already satisfied: ujson in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (5.10.0)\n", + "Requirement already satisfied: packaging in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (24.2)\n", + "Requirement already satisfied: zarr>=3.0.2 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from virtualizarr==1.3.3.dev51+g66dac95.d20250423) (3.0.6)\n", + "Requirement already satisfied: typing_extensions in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from numcodecs>=0.15.1->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (4.13.2)\n", + "Requirement already satisfied: pandas>=2.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from xarray>=2025.3.0->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2.2.3)\n", + "Requirement already satisfied: donfig>=0.8 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from zarr>=3.0.2->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (0.8.1.post1)\n", + "Requirement already satisfied: fsspec!=2024.3.1,>=2022.1.0 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from universal-pathlib->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2025.3.2)\n", + "Requirement already satisfied: pyyaml in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from donfig>=0.8->zarr>=3.0.2->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (6.0.2)\n", + "Requirement already satisfied: crc32c>=2.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from numcodecs[crc32c]>=0.14->zarr>=3.0.2->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2.7.1)\n", + "Requirement already satisfied: python-dateutil>=2.8.2 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from pandas>=2.1->xarray>=2025.3.0->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2.9.0.post0)\n", + "Requirement already satisfied: pytz>=2020.1 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from pandas>=2.1->xarray>=2025.3.0->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2025.2)\n", + "Requirement already satisfied: tzdata>=2022.7 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from pandas>=2.1->xarray>=2025.3.0->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (2025.2)\n", + "Requirement already satisfied: six>=1.5 in /Users/tom/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages (from python-dateutil>=2.8.2->pandas>=2.1->xarray>=2025.3.0->virtualizarr==1.3.3.dev51+g66dac95.d20250423) (1.17.0)\n", + "Building wheels for collected packages: virtualizarr\n", + " Building editable for virtualizarr (pyproject.toml) ... \u001b[?25ldone\n", + "\u001b[?25h Created wheel for virtualizarr: filename=virtualizarr-1.3.3.dev51+g66dac95.d20250423-0.editable-py3-none-any.whl size=11454 sha256=4fb9214490b30e0d164b5c51ba8b2adc66398d297023cc3be98f6db16a03ad50\n", + " Stored in directory: /private/var/folders/6x/yyxxlhtd3db164lh5zgfhgp80000gn/T/pip-ephem-wheel-cache-zze72043/wheels/b2/de/74/835994aa61c2a322775c8fb73bc5cc88757bde8b802570e328\n", + "Successfully built virtualizarr\n", + "Installing collected packages: virtualizarr\n", + " Attempting uninstall: virtualizarr\n", + " Found existing installation: virtualizarr 1.3.3.dev40+ge92c0ef\n", + " Uninstalling virtualizarr-1.3.3.dev40+ge92c0ef:\n", + " Successfully uninstalled virtualizarr-1.3.3.dev40+ge92c0ef\n", + "Successfully installed virtualizarr-1.3.3.dev51+g66dac95.d20250423\n" + ] + } + ], + "source": [ + "!pip install -e /Users/tom/Documents/Work/Code/VirtualiZarr/" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc']\n", + "{'loadable_variables': ['elapsed_time', 'polygon_id', 'injection_date', 'time_bounds', 'z_t', 'z_w', 'z_t_150m', 'z_w_bot', 'z_w_top', 'T0_Kelvin', 'cp_air', 'cp_sw', 'days_in_norm_year', 'fwflux_factor', 'grav', 'heat_to_PW', 'hflux_factor', 'latent_heat_fusion', 'latent_heat_fusion_mks', 'latent_heat_vapor', 'mass_to_Sv', 'momentum_factor', 'nsurface_t', 'nsurface_u', 'ocn_ref_salinity', 'omega', 'ppt_to_salt', 'radius', 'rho_air', 'rho_fw', 'salinity_factor', 'salt_to_Svppt', 'salt_to_mmday', 'salt_to_ppt', 'sea_ice_salinity', 'sflux_factor', 'sound', 'vonkar', 'stefan_boltzmann'], 'decode_times': False}\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:353\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset\u001b[0;34m(paths, concat_dim, compat, preprocess, data_vars, coords, combine, parallel, join, attrs_file, combine_attrs, **kwargs)\u001b[0m\n\u001b[1;32m 350\u001b[0m executor \u001b[38;5;241m=\u001b[39m get_executor(parallel\u001b[38;5;241m=\u001b[39mparallel)\n\u001b[1;32m 351\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m executor() \u001b[38;5;28;01mas\u001b[39;00m exec:\n\u001b[1;32m 352\u001b[0m \u001b[38;5;66;03m# wait for all the workers to finish, and send their resulting virtual datasets back to the client for concatenation there\u001b[39;00m\n\u001b[0;32m--> 353\u001b[0m virtual_datasets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\n\u001b[1;32m 354\u001b[0m exec\u001b[38;5;241m.\u001b[39mmap(\n\u001b[1;32m 355\u001b[0m open_func,\n\u001b[1;32m 356\u001b[0m paths1d,\n\u001b[1;32m 357\u001b[0m )\n\u001b[1;32m 358\u001b[0m )\n\u001b[1;32m 360\u001b[0m \u001b[38;5;66;03m# TODO add file closers\u001b[39;00m\n\u001b[1;32m 361\u001b[0m \n\u001b[1;32m 362\u001b[0m \u001b[38;5;66;03m# Combine all datasets, closing them in case of a ValueError\u001b[39;00m\n\u001b[1;32m 363\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:346\u001b[0m, in \u001b[0;36mopen_virtual_mfdataset.._open\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 345\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_open\u001b[39m(path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m xr\u001b[38;5;241m.\u001b[39mDataset:\n\u001b[0;32m--> 346\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m open_virtual_dataset(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:181\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[1;32m 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[0;32m--> 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n\u001b[1;32m 188\u001b[0m \u001b[38;5;66;03m# Convert to a manifest store\u001b[39;00m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:154\u001b[0m, in \u001b[0;36mHDFVirtualBackend._construct_manifest_group\u001b[0;34m(store, filepath, group, drop_variables)\u001b[0m\n\u001b[1;32m 147\u001b[0m manifest_dict \u001b[38;5;241m=\u001b[39m {}\n\u001b[1;32m 148\u001b[0m \u001b[38;5;66;03m# Several of our test fixtures which use xr.tutorial data have\u001b[39;00m\n\u001b[1;32m 149\u001b[0m \u001b[38;5;66;03m# non coord dimensions serialized using big endian dtypes which are not\u001b[39;00m\n\u001b[1;32m 150\u001b[0m \u001b[38;5;66;03m# yet supported in zarr-python v3. We'll drop these variables for the\u001b[39;00m\n\u001b[1;32m 151\u001b[0m \u001b[38;5;66;03m# moment until big endian support is included upstream.)\u001b[39;00m\n\u001b[1;32m 153\u001b[0m non_coordinate_dimension_vars \u001b[38;5;241m=\u001b[39m (\n\u001b[0;32m--> 154\u001b[0m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_find_non_coord_dimension_vars(group\u001b[38;5;241m=\u001b[39mg)\n\u001b[1;32m 155\u001b[0m )\n\u001b[1;32m 156\u001b[0m drop_variables \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\u001b[38;5;28mset\u001b[39m(\u001b[38;5;28mlist\u001b[39m(drop_variables) \u001b[38;5;241m+\u001b[39m non_coordinate_dimension_vars))\n\u001b[1;32m 157\u001b[0m attrs \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_extract_attrs(g)\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:398\u001b[0m, in \u001b[0;36mHDFVirtualBackend._find_non_coord_dimension_vars\u001b[0;34m(group)\u001b[0m\n\u001b[1;32m 396\u001b[0m non_coordinate_dimension_variables \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 397\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m name, obj \u001b[38;5;129;01min\u001b[39;00m group\u001b[38;5;241m.\u001b[39mitems():\n\u001b[0;32m--> 398\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_Netcdf4Dimid\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m obj\u001b[38;5;241m.\u001b[39mattrs:\n\u001b[1;32m 399\u001b[0m dimension_names\u001b[38;5;241m.\u001b[39mappend(name)\n\u001b[1;32m 400\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m name, obj \u001b[38;5;129;01min\u001b[39;00m group\u001b[38;5;241m.\u001b[39mitems():\n", + "File \u001b[0;32mh5py/_objects.pyx:54\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/_objects.pyx:55\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/h5py/_hl/attrs.py:272\u001b[0m, in \u001b[0;36mAttributeManager.__contains__\u001b[0;34m(self, name)\u001b[0m\n\u001b[1;32m 269\u001b[0m \u001b[38;5;129m@with_phil\u001b[39m\n\u001b[1;32m 270\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m__contains__\u001b[39m(\u001b[38;5;28mself\u001b[39m, name):\n\u001b[1;32m 271\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\" Determine if an attribute exists, by name. \"\"\"\u001b[39;00m\n\u001b[0;32m--> 272\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m h5a\u001b[38;5;241m.\u001b[39mexists(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_id, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_e(name))\n", + "File \u001b[0;32mh5py/_objects.pyx:54\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/_objects.pyx:55\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/h5a.pyx:103\u001b[0m, in \u001b[0;36mh5py.h5a.exists\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/h5fd.pyx:164\u001b[0m, in \u001b[0;36mh5py.h5fd.H5FD_fileobj_read\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/utils.py:37\u001b[0m, in \u001b[0;36mObstoreReader.read\u001b[0;34m(self, size)\u001b[0m\n\u001b[1;32m 36\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mread\u001b[39m(\u001b[38;5;28mself\u001b[39m, size: \u001b[38;5;28mint\u001b[39m, \u001b[38;5;241m/\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mbytes\u001b[39m:\n\u001b[0;32m---> 37\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reader\u001b[38;5;241m.\u001b[39mread(size)\u001b[38;5;241m.\u001b[39mto_bytes()\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "%%time\n", + "result = vz.open_virtual_mfdataset(\n", + " single_simulation_urls[0:1],\n", + " combine=\"by_coords\",\n", + " coords=\"minimal\", compat=\"override\",\n", + " loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + " #parallel='lithops',\n", + ")\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'https://data.source.coop/cworthy/oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "single_simulation_urls[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "ename": "OSError", + "evalue": "Generic HTTP error: HTTP error: request or response body error", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mOSError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/backend.py:208\u001b[0m, in \u001b[0;36mopen_virtual_dataset\u001b[0;34m(filepath, filetype, group, drop_variables, loadable_variables, decode_times, cftime_variables, indexes, virtual_backend_kwargs, reader_options, backend)\u001b[0m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m backend_cls \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 206\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mUnsupported file type: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfiletype\u001b[38;5;241m.\u001b[39mname\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 208\u001b[0m vds \u001b[38;5;241m=\u001b[39m backend_cls\u001b[38;5;241m.\u001b[39mopen_virtual_dataset(\n\u001b[1;32m 209\u001b[0m filepath,\n\u001b[1;32m 210\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 211\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 212\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 213\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 214\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 215\u001b[0m virtual_backend_kwargs\u001b[38;5;241m=\u001b[39mvirtual_backend_kwargs,\n\u001b[1;32m 216\u001b[0m reader_options\u001b[38;5;241m=\u001b[39mreader_options,\n\u001b[1;32m 217\u001b[0m )\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m vds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:217\u001b[0m, in \u001b[0;36mHDFVirtualBackend.open_virtual_dataset\u001b[0;34m(filepath, group, drop_variables, loadable_variables, decode_times, indexes, virtual_backend_kwargs, reader_options)\u001b[0m\n\u001b[1;32m 209\u001b[0m filepath \u001b[38;5;241m=\u001b[39m validate_and_normalize_path_to_uri(\n\u001b[1;32m 210\u001b[0m filepath, fs_root\u001b[38;5;241m=\u001b[39mPath\u001b[38;5;241m.\u001b[39mcwd()\u001b[38;5;241m.\u001b[39mas_uri()\n\u001b[1;32m 211\u001b[0m )\n\u001b[1;32m 213\u001b[0m _drop_vars: Iterable[\u001b[38;5;28mstr\u001b[39m] \u001b[38;5;241m=\u001b[39m (\n\u001b[1;32m 214\u001b[0m [] \u001b[38;5;28;01mif\u001b[39;00m drop_variables \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mlist\u001b[39m(drop_variables)\n\u001b[1;32m 215\u001b[0m )\n\u001b[0;32m--> 217\u001b[0m manifest_store \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_create_manifest_store(\n\u001b[1;32m 218\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 219\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39m_drop_vars,\n\u001b[1;32m 220\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 221\u001b[0m )\n\u001b[1;32m 222\u001b[0m ds \u001b[38;5;241m=\u001b[39m manifest_store\u001b[38;5;241m.\u001b[39mto_virtual_dataset(\n\u001b[1;32m 223\u001b[0m loadable_variables\u001b[38;5;241m=\u001b[39mloadable_variables,\n\u001b[1;32m 224\u001b[0m decode_times\u001b[38;5;241m=\u001b[39mdecode_times,\n\u001b[1;32m 225\u001b[0m indexes\u001b[38;5;241m=\u001b[39mindexes,\n\u001b[1;32m 226\u001b[0m )\n\u001b[1;32m 227\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ds\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:181\u001b[0m, in \u001b[0;36mHDFVirtualBackend._create_manifest_store\u001b[0;34m(filepath, store, group, drop_variables)\u001b[0m\n\u001b[1;32m 179\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m store:\n\u001b[1;32m 180\u001b[0m store \u001b[38;5;241m=\u001b[39m default_object_store(filepath) \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[0;32m--> 181\u001b[0m manifest_group \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_construct_manifest_group(\n\u001b[1;32m 182\u001b[0m store\u001b[38;5;241m=\u001b[39mstore,\n\u001b[1;32m 183\u001b[0m filepath\u001b[38;5;241m=\u001b[39mfilepath,\n\u001b[1;32m 184\u001b[0m group\u001b[38;5;241m=\u001b[39mgroup,\n\u001b[1;32m 185\u001b[0m drop_variables\u001b[38;5;241m=\u001b[39mdrop_variables,\n\u001b[1;32m 186\u001b[0m )\n\u001b[1;32m 187\u001b[0m registry \u001b[38;5;241m=\u001b[39m ObjectStoreRegistry({filepath: store})\n\u001b[1;32m 188\u001b[0m \u001b[38;5;66;03m# Convert to a manifest store\u001b[39;00m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:154\u001b[0m, in \u001b[0;36mHDFVirtualBackend._construct_manifest_group\u001b[0;34m(store, filepath, group, drop_variables)\u001b[0m\n\u001b[1;32m 147\u001b[0m manifest_dict \u001b[38;5;241m=\u001b[39m {}\n\u001b[1;32m 148\u001b[0m \u001b[38;5;66;03m# Several of our test fixtures which use xr.tutorial data have\u001b[39;00m\n\u001b[1;32m 149\u001b[0m \u001b[38;5;66;03m# non coord dimensions serialized using big endian dtypes which are not\u001b[39;00m\n\u001b[1;32m 150\u001b[0m \u001b[38;5;66;03m# yet supported in zarr-python v3. We'll drop these variables for the\u001b[39;00m\n\u001b[1;32m 151\u001b[0m \u001b[38;5;66;03m# moment until big endian support is included upstream.)\u001b[39;00m\n\u001b[1;32m 153\u001b[0m non_coordinate_dimension_vars \u001b[38;5;241m=\u001b[39m (\n\u001b[0;32m--> 154\u001b[0m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_find_non_coord_dimension_vars(group\u001b[38;5;241m=\u001b[39mg)\n\u001b[1;32m 155\u001b[0m )\n\u001b[1;32m 156\u001b[0m drop_variables \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(\u001b[38;5;28mset\u001b[39m(\u001b[38;5;28mlist\u001b[39m(drop_variables) \u001b[38;5;241m+\u001b[39m non_coordinate_dimension_vars))\n\u001b[1;32m 157\u001b[0m attrs \u001b[38;5;241m=\u001b[39m HDFVirtualBackend\u001b[38;5;241m.\u001b[39m_extract_attrs(g)\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/readers/hdf/hdf.py:397\u001b[0m, in \u001b[0;36mHDFVirtualBackend._find_non_coord_dimension_vars\u001b[0;34m(group)\u001b[0m\n\u001b[1;32m 395\u001b[0m dimension_names \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 396\u001b[0m non_coordinate_dimension_variables \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m--> 397\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m name, obj \u001b[38;5;129;01min\u001b[39;00m group\u001b[38;5;241m.\u001b[39mitems():\n\u001b[1;32m 398\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_Netcdf4Dimid\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m obj\u001b[38;5;241m.\u001b[39mattrs:\n\u001b[1;32m 399\u001b[0m dimension_names\u001b[38;5;241m.\u001b[39mappend(name)\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/h5py/_hl/base.py:434\u001b[0m, in \u001b[0;36mItemsViewHDF5.__iter__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 432\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m phil:\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m key \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_mapping:\n\u001b[0;32m--> 434\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m (key, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_mapping\u001b[38;5;241m.\u001b[39mget(key))\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/h5py/_hl/group.py:400\u001b[0m, in \u001b[0;36mGroup.get\u001b[0;34m(self, name, default, getclass, getlink)\u001b[0m\n\u001b[1;32m 398\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (getclass \u001b[38;5;129;01mor\u001b[39;00m getlink):\n\u001b[1;32m 399\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 400\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m[name]\n\u001b[1;32m 401\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 402\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m default\n", + "File \u001b[0;32mh5py/_objects.pyx:54\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/_objects.pyx:55\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/miniconda3/envs/lithops-coiled/lib/python3.12/site-packages/h5py/_hl/group.py:357\u001b[0m, in \u001b[0;36mGroup.__getitem__\u001b[0;34m(self, name)\u001b[0m\n\u001b[1;32m 355\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mInvalid HDF5 object reference\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 356\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(name, (\u001b[38;5;28mbytes\u001b[39m, \u001b[38;5;28mstr\u001b[39m)):\n\u001b[0;32m--> 357\u001b[0m oid \u001b[38;5;241m=\u001b[39m h5o\u001b[38;5;241m.\u001b[39mopen(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mid, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_e(name), lapl\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_lapl)\n\u001b[1;32m 358\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 359\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAccessing a group is done with bytes or str, \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnot \u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;28mtype\u001b[39m(name)))\n", + "File \u001b[0;32mh5py/_objects.pyx:54\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/_objects.pyx:55\u001b[0m, in \u001b[0;36mh5py._objects.with_phil.wrapper\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/h5o.pyx:257\u001b[0m, in \u001b[0;36mh5py.h5o.open\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mh5py/h5fd.pyx:164\u001b[0m, in \u001b[0;36mh5py.h5fd.H5FD_fileobj_read\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/Documents/Work/Code/VirtualiZarr/virtualizarr/utils.py:37\u001b[0m, in \u001b[0;36mObstoreReader.read\u001b[0;34m(self, size)\u001b[0m\n\u001b[1;32m 36\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21mread\u001b[39m(\u001b[38;5;28mself\u001b[39m, size: \u001b[38;5;28mint\u001b[39m, \u001b[38;5;241m/\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mbytes\u001b[39m:\n\u001b[0;32m---> 37\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reader\u001b[38;5;241m.\u001b[39mread(size)\u001b[38;5;241m.\u001b[39mto_bytes()\n", + "\u001b[0;31mOSError\u001b[0m: Generic HTTP error: HTTP error: request or response body error" + ] + } + ], + "source": [ + "%%time\n", + "result = vz.open_virtual_dataset(\n", + " single_simulation_urls[0],\n", + " #loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + ")\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "ArrayV3Metadata(shape=(1, 1, 1, 60, 384, 320), data_type=, chunk_grid=RegularChunkGrid(chunk_shape=(1, 1, 1, 60, 384, 320)), chunk_key_encoding=DefaultChunkKeyEncoding(name='default', separator='/'), fill_value=np.float32(9.96921e+36), codecs=(BytesCodec(endian=), Shuffle(codec_name='numcodecs.shuffle', codec_config={'elementsize': 4}), Zlib(codec_name='numcodecs.zlib', codec_config={'level': 4})), attributes={}, dimension_names=None, zarr_format=3, node_type='array', storage_transformers=())" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result['ALK'].data.metadata" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "Can't pickle local object '_make_bytes_bytes_codec.._Codec'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[24], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m pickle\u001b[38;5;241m.\u001b[39mdumps(result[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mALK\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mdata\u001b[38;5;241m.\u001b[39mmetadata)\n", + "\u001b[0;31mAttributeError\u001b[0m: Can't pickle local object '_make_bytes_bytes_codec.._Codec'" + ] + } + ], + "source": [ + "pickle.dumps(result['ALK'].data.metadata)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'path': 'oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " 'last_modified': datetime.datetime(2024, 10, 2, 14, 32, 32, tzinfo=datetime.timezone.utc),\n", + " 'size': 111775679,\n", + " 'e_tag': '\"5c74be109af79fad01b1333e5eecdd5c-14\"',\n", + " 'version': None}" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import obstore\n", + "\n", + "store = obstore.store.S3Store(\n", + " \"cworthy\", endpoint=\"https://data.source.coop\", skip_signature=True\n", + ")\n", + "path = \"oae-efficiency-atlas/data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\"\n", + "store.head(path)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 367 ms, sys: 155 ms, total: 522 ms\n", + "Wall time: 842 ms\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n", + "/Users/tom/Documents/Work/Code/numcodecs/numcodecs/zarr3.py:133: UserWarning: Numcodecs codecs are not in the Zarr version 3 specification and may not be supported by other zarr implementations.\n", + " super().__init__(**codec_config)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
<xarray.Dataset> Size: 326MB\n",
+       "Dimensions:                     (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n",
+       "                                 z_w_bot: 60, polygon_id: 1, injection_date: 1,\n",
+       "                                 elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n",
+       "Coordinates: (12/63)\n",
+       "  * z_t                         (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n",
+       "  * z_t_150m                    (z_t_150m) float32 60B 500.0 ... 1.45e+04\n",
+       "  * z_w                         (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n",
+       "  * z_w_top                     (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n",
+       "  * z_w_bot                     (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n",
+       "  * polygon_id                  (polygon_id) int64 8B 0\n",
+       "    ...                          ...\n",
+       "    hflux_factor                float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    fwflux_factor               float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    salinity_factor             float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    sflux_factor                float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    nsurface_t                  float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "    nsurface_u                  float64 8B ManifestArray<shape=(), dtype=floa...\n",
+       "Dimensions without coordinates: nlat, nlon, d2\n",
+       "Data variables: (12/35)\n",
+       "    _nc4_non_coord_time         (injection_date, elapsed_time) float64 8B Man...\n",
+       "    CO3                         (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D                       (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    CO3_ALT_CO2                 (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    pH_3D_ALT_CO2               (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    co3_sat_calc                (polygon_id, injection_date, elapsed_time, z_t, nlat, nlon) float32 29MB ManifestArray<shape=(1, 1, 1, 60, 384, 320), dtype=float32, chu...\n",
+       "    ...                          ...\n",
+       "    ALK_ALT_CO2_zint_100m       (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    STF_ALK_ALT_CO2             (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_DIC_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK          (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "    tend_zint_100m_ALK_ALT_CO2  (polygon_id, injection_date, elapsed_time, nlat, nlon) float32 492kB ManifestArray<shape=(1, 1, 1, 384, 320), dtype=float32, chu...\n",
+       "Attributes:\n",
+       "    title:             smyle-fosi.North_Atlantic_basin.alk-forcing-North_Atla...\n",
+       "    history:           none\n",
+       "    Conventions:       CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-cu...\n",
+       "    time_period_freq:  month_1\n",
+       "    model_doi_url:     https://doi.org/10.5065/D67H1H0V\n",
+       "    contents:          Diagnostic and Prognostic Variables\n",
+       "    source:            CCSM POP2, the CCSM Ocean Component\n",
+       "    revision:          $Id$\n",
+       "    calendar:          All years have exactly  365 days.\n",
+       "    start_time:        This dataset was created on 2023-05-29 at 09:20:38.7\n",
+       "    cell_methods:      cell_methods = time: mean ==> the variable values are ...
" + ], + "text/plain": [ + " Size: 326MB\n", + "Dimensions: (z_t: 60, z_t_150m: 15, z_w: 60, z_w_top: 60,\n", + " z_w_bot: 60, polygon_id: 1, injection_date: 1,\n", + " elapsed_time: 1, nlat: 384, nlon: 320, d2: 2)\n", + "Coordinates: (12/63)\n", + " * z_t (z_t) float32 240B 500.0 1.5e+03 ... 5.375e+05\n", + " * z_t_150m (z_t_150m) float32 60B 500.0 ... 1.45e+04\n", + " * z_w (z_w) float32 240B 0.0 1e+03 ... 5e+05 5.25e+05\n", + " * z_w_top (z_w_top) float32 240B 0.0 1e+03 ... 5.25e+05\n", + " * z_w_bot (z_w_bot) float32 240B 1e+03 2e+03 ... 5.5e+05\n", + " * polygon_id (polygon_id) int64 8B 0\n", + " ... ...\n", + " hflux_factor float64 8B ManifestArray the variable values are ..." + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%time\n", + "result = vz.open_virtual_dataset(\n", + " '/Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", + " #loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " decode_times=False,\n", + ")\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "import numcodecs" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0.16.1'" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "numcodecs.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "b'\\x80\\x04\\x95\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x8c\\x13xarray.core.dataset\\x94\\x8c\\x07Dataset\\x94\\x93\\x94)\\x81\\x94N}\\x94(\\x8c\\x06_attrs\\x94}\\x94(\\x8c\\x05title\\x94\\x8cLsmyle-fosi.North_Atlantic_basin.alk-forcing-North_Atlantic_basin.000-1999-01\\x94\\x8c\\x07history\\x94\\x8c\\x04none\\x94\\x8c\\x0bConventions\\x94\\x8c?CF-1.0; http://www.cgd.ucar.edu/cms/eaton/netcdf/CF-current.htm\\x94\\x8c\\x10time_period_freq\\x94\\x8c\\x07month_1\\x94\\x8c\\rmodel_doi_url\\x94\\x8c https://doi.org/10.5065/D67H1H0V\\x94\\x8c\\x08contents\\x94\\x8c#Diagnostic and Prognostic Variables\\x94\\x8c\\x06source\\x94\\x8c#CCSM POP2, the CCSM Ocean Component\\x94\\x8c\\x08revision\\x94\\x8c\\x04$Id$\\x94\\x8c\\x08calendar\\x94\\x8c!All years have exactly 365 days.\\x94\\x8c\\nstart_time\\x94\\x8c4This dataset was created on 2023-05-29 at 09:20:38.7\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\xfccell_methods = time: mean ==> the variable values are averaged over the time interval between the previous time coordinate and the current one. cell_methods absent ==> the variable values are at the time given by the current time coordinate.\\x94u\\x8c\\x06_close\\x94N\\x8c\\x0c_coord_names\\x94\\x8f\\x94(\\x8c\\x02dz\\x94\\x8c\\rsalt_to_Svppt\\x94\\x8c\\x0bREGION_MASK\\x94\\x8c\\x03DYT\\x94\\x8c\\x03z_w\\x94\\x8c\\x05ULONG\\x94\\x8c\\x06radius\\x94\\x8c\\x12latent_heat_fusion\\x94\\x8c\\x06rho_sw\\x94\\x8c\\x05TLONG\\x94\\x8c\\x06rho_fw\\x94\\x8c\\x16latent_heat_fusion_mks\\x94\\x8c\\tT0_Kelvin\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03DXU\\x94\\x8c\\x02HT\\x94\\x8c\\npolygon_id\\x94\\x8c\\x03DYU\\x94\\x8c\\x03KMT\\x94\\x8c\\x05sound\\x94\\x8c\\x06cp_air\\x94\\x8c\\x11latent_heat_vapor\\x94\\x8c\\x0fsalinity_factor\\x94\\x8c\\x04ULAT\\x94\\x8c\\x07z_w_top\\x94\\x8c\\x07rho_air\\x94\\x8c\\x03z_t\\x94\\x8c\\x04TLAT\\x94\\x8c\\x03HUS\\x94\\x8c\\nnsurface_t\\x94\\x8c\\x06vonkar\\x94\\x8c\\x03HTE\\x94\\x8c\\x05TAREA\\x94\\x8c\\nheat_to_PW\\x94\\x8c\\x03HTN\\x94\\x8c\\x10ocn_ref_salinity\\x94\\x8c\\x11days_in_norm_year\\x94\\x8c\\x07z_w_bot\\x94\\x8c\\x03DXT\\x94\\x8c\\x06ANGLET\\x94\\x8c\\x03KMU\\x94\\x8c\\rsalt_to_mmday\\x94\\x8c\\x0chflux_factor\\x94\\x8c\\x05omega\\x94\\x8c\\nmass_to_Sv\\x94\\x8c\\rfwflux_factor\\x94\\x8c\\x0bsalt_to_ppt\\x94\\x8c\\x05ANGLE\\x94\\x8c\\x10sea_ice_salinity\\x94\\x8c\\x04grav\\x94\\x8c\\x0einjection_date\\x94\\x8c\\nnsurface_u\\x94\\x8c\\x02HU\\x94\\x8c\\x0fmomentum_factor\\x94\\x8c\\ntime_bound\\x94\\x8c\\x05cp_sw\\x94\\x8c\\x03dzw\\x94\\x8c\\x10stefan_boltzmann\\x94\\x8c\\x0bppt_to_salt\\x94\\x8c\\x0csflux_factor\\x94\\x8c\\x08z_t_150m\\x94\\x8c\\x03HUW\\x94\\x8c\\x05UAREA\\x94\\x90\\x8c\\x05_dims\\x94}\\x94(h:K\\xfaH\\xc09\\x03I\\x94t\\x94b\\x8c\\x04name\\x94h:u\\x86\\x94R\\x94u\\x86\\x94bh\\\\hi)\\x81\\x94N}\\x94(hlhrhuh\\\\hvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x0f\\x85\\x94hr\\x89C<\\x00\\x00\\xfaC\\x00\\x80\\xbbD\\x00@\\x1cE\\x00\\xc0ZE\\x00\\xa0\\x8cE\\x00\\xe0\\xabE\\x00 \\xcbE\\x00`\\xeaE\\x00\\xd0\\x04F\\x00p\\x14F\\x00\\x10$F\\x00\\xb03F\\x00PCF\\x00\\xf0RF\\x00\\x90bF\\x94t\\x94bh\\x8ah\\\\u\\x86\\x94R\\x94u\\x86\\x94bh$hi)\\x81\\x94N}\\x94(hlhrhuh$hvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K<\\x85\\x94hr\\x89C\\xf0\\x00\\x00\\x00\\x00\\x00\\x00zD\\x00\\x00\\xfaD\\x00\\x80;E\\x00\\x00zE\\x00@\\x9cE\\x00\\x80\\xbbE\\x00\\xc0\\xdaE\\x00\\x00\\xfaE\\x00\\xa0\\x0cF\\x00@\\x1cF\\x00\\xe0+F\\x00\\x80;F\\x00 KF\\x00\\xc0ZF\\x00`jF\\x00\\x00zF]\\xf7\\x84FB8\\x8dF@\\xdc\\x95F\\xdd\\xfb\\x9eF\\xb0\\xb0\\xa8F\\xa0\\x16\\xb3F\\xe8L\\xbeF)w\\xcaF\\x85\\xbe\\xd7F\\xf1R\\xe6F\\xbfl\\xf6F:\\'\\x04Gy#\\x0eG\\x0cZ\\x19G\\xe3\\x02&G\\xa8`4G\\xb0\\xc2DG\\xe9\\x86WG\\xab\\x1bmGn\\x00\\x83G\\xe7c\\x91GY\\x08\\xa2G-B\\xb5Gid\\xcbG\\x02\\xb8\\xe4GW\\xb8\\x00H\\x85\\xd0\\x10H\\xcd\\x98\"H\\\\\\xef5H\\xd9\\x9fJH\\xfaj`H\\x9a\\x0fwH;)\\x87Hb\\x01\\x93H\\xbb\\xfd\\x9eH\\x1c\\x11\\xabH\\xa62\\xb7H\\xa5\\\\\\xc3H\\x8f\\x8b\\xcfHB\\xbd\\xdbH\\x80\\xf0\\xe7H\\x96$\\xf4H\\x8f,\\x00I\\x94t\\x94bh\\x8ah$u\\x86\\x94R\\x94u\\x86\\x94bh8hi)\\x81\\x94N}\\x94(hlhrhuh8hvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K<\\x85\\x94hr\\x89C\\xf0\\x00\\x00\\x00\\x00\\x00\\x00zD\\x00\\x00\\xfaD\\x00\\x80;E\\x00\\x00zE\\x00@\\x9cE\\x00\\x80\\xbbE\\x00\\xc0\\xdaE\\x00\\x00\\xfaE\\x00\\xa0\\x0cF\\x00@\\x1cF\\x00\\xe0+F\\x00\\x80;F\\x00 KF\\x00\\xc0ZF\\x00`jF\\x00\\x00zF]\\xf7\\x84FB8\\x8dF@\\xdc\\x95F\\xdd\\xfb\\x9eF\\xb0\\xb0\\xa8F\\xa0\\x16\\xb3F\\xe8L\\xbeF)w\\xcaF\\x85\\xbe\\xd7F\\xf1R\\xe6F\\xbfl\\xf6F:\\'\\x04Gy#\\x0eG\\x0cZ\\x19G\\xe3\\x02&G\\xa8`4G\\xb0\\xc2DG\\xe9\\x86WG\\xab\\x1bmGn\\x00\\x83G\\xe7c\\x91GY\\x08\\xa2G-B\\xb5Gid\\xcbG\\x02\\xb8\\xe4GW\\xb8\\x00H\\x85\\xd0\\x10H\\xcd\\x98\"H\\\\\\xef5H\\xd9\\x9fJH\\xfaj`H\\x9a\\x0fwH;)\\x87Hb\\x01\\x93H\\xbb\\xfd\\x9eH\\x1c\\x11\\xabH\\xa62\\xb7H\\xa5\\\\\\xc3H\\x8f\\x8b\\xcfHB\\xbd\\xdbH\\x80\\xf0\\xe7H\\x96$\\xf4H\\x8f,\\x00I\\x94t\\x94bh\\x8ah8u\\x86\\x94R\\x94u\\x86\\x94bhEhi)\\x81\\x94N}\\x94(hlhrhuhEhvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K<\\x85\\x94hr\\x89C\\xf0\\x00\\x00zD\\x00\\x00\\xfaD\\x00\\x80;E\\x00\\x00zE\\x00@\\x9cE\\x00\\x80\\xbbE\\x00\\xc0\\xdaE\\x00\\x00\\xfaE\\x00\\xa0\\x0cF\\x00@\\x1cF\\x00\\xe0+F\\x00\\x80;F\\x00 KF\\x00\\xc0ZF\\x00`jF\\x00\\x00zF]\\xf7\\x84FB8\\x8dF@\\xdc\\x95F\\xdd\\xfb\\x9eF\\xb0\\xb0\\xa8F\\xa0\\x16\\xb3F\\xe8L\\xbeF)w\\xcaF\\x85\\xbe\\xd7F\\xf1R\\xe6F\\xbfl\\xf6F:\\'\\x04Gy#\\x0eG\\x0cZ\\x19G\\xe3\\x02&G\\xa8`4G\\xb0\\xc2DG\\xe9\\x86WG\\xab\\x1bmGn\\x00\\x83G\\xe7c\\x91GY\\x08\\xa2G-B\\xb5Gid\\xcbG\\x02\\xb8\\xe4GW\\xb8\\x00H\\x85\\xd0\\x10H\\xcd\\x98\"H\\\\\\xef5H\\xd9\\x9fJH\\xfaj`H\\x9a\\x0fwH;)\\x87Hb\\x01\\x93H\\xbb\\xfd\\x9eH\\x1c\\x11\\xabH\\xa62\\xb7H\\xa5\\\\\\xc3H\\x8f\\x8b\\xcfHB\\xbd\\xdbH\\x80\\xf0\\xe7H\\x96$\\xf4H\\x8f,\\x00I\\xf1F\\x06I\\x94t\\x94bh\\x8ahEu\\x86\\x94R\\x94u\\x86\\x94bh0hi)\\x81\\x94N}\\x94(hlho\\x8c\\x02i8\\x94\\x89\\x88\\x87\\x94R\\x94(K\\x03hsNNNJ\\xff\\xff\\xff\\xffJ\\xff\\xff\\xff\\xffK\\x00t\\x94bhuh0hvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94h\\xc2\\x89C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bh\\x8ah0u\\x86\\x94R\\x94u\\x86\\x94bhRhi)\\x81\\x94N}\\x94(hlh\\xc2huhRhvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94h\\xc2\\x89C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bh\\x8ahRu\\x86\\x94R\\x94u\\x86\\x94bh-hi)\\x81\\x94N}\\x94(hlh\\xc2huh-hvhyh{}\\x94(h}h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94h\\xc2\\x89C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bh\\x8ah-u\\x86\\x94R\\x94u\\x86\\x94bu\\x8c\\n_variables\\x94}\\x94(h:\\x8c\\x14xarray.core.variable\\x94\\x8c\\rIndexVariable\\x94\\x93\\x94)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\tlong_name\\x94\\x8c\\'depth from surface to midpoint of layer\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x08positive\\x94\\x8c\\x04down\\x94\\x8c\\tvalid_min\\x94G@\\x7f@\\x00\\x00\\x00\\x00\\x00\\x8c\\tvalid_max\\x94GA g8\\x00\\x00\\x00\\x00u\\x8c\\x05_data\\x94\\x8c\\x14xarray.core.indexing\\x94\\x8c\\x15PandasIndexingAdapter\\x94\\x93\\x94)\\x81\\x94N}\\x94(\\x8c\\x06_dtype\\x94hr\\x8c\\x05array\\x94h\\x8cu\\x86\\x94bh_h:\\x85\\x94hd}\\x94(\\x8c\\x06chunks\\x94K<\\x85\\x94\\x8c\\x10preferred_chunks\\x94}\\x94h:K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08>|Z\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd6\\xb9\\xb1\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94hahbt\\x94hdNu\\x86\\x94b\\x8c\\x05pH_3D\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x02pH\\x94\\x8c\\x05units\\x94\\x8c\\x011\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb9T\\x0c\\x01\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf6z\\x92\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0bCO3_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c,Carbonate Ion Concentration, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xfc\\xee\\x9e\\x01\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x91\\xb9\\xb1\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\rpH_3D_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x13pH, Alternative CO2\\x94\\x8c\\x05units\\x94j\\xb7\\x02\\x00\\x00\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xdd\\xccP\\x02\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x84z\\x92\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0cco3_sat_calc\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\'CO3 concentration at calcite saturation\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x9b`\\xe3\\x02\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xcc\\xc5\\x86\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0cco3_sat_arag\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c)CO3 concentration at aragonite saturation\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x86Ej\\x03\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08I\\xdb\\x8c\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x07CO2STAR\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x08CO2 Star\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08>\\xf7\\x03\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x17x\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x08DCO2STAR\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\nD CO2 Star\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd8\\xd5\\xfa\\x03\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x1c[\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x08pCO2SURF\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0csurface pCO2\\x94\\x8c\\x05units\\x94\\x8c\\x04ppmv\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08DI\\xff\\x03\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc7j\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x05DpCO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x06D pCO2\\x94\\x8c\\x05units\\x94\\x8c\\x04ppmv\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x05\\xd3\\x02\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf0[\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x06FG_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x14DIC Surface Gas Flux\\x94\\x8c\\x05units\\x94\\x8c\\rmmol/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x19K\\x07\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08dp\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x02PH\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\nSurface pH\\x94\\x8c\\x05units\\x94j\\xb7\\x02\\x00\\x00\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x91\\xd6\\x0b\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\r\\xc8\\x02\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x07ATM_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0fAtmospheric CO2\\x94\\x8c\\x05units\\x94\\x8c\\x04ppmv\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x84\\xbc\\x0e\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc2R\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0fCO2STAR_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x19CO2 Star, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\\\+\\x0f\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\nx\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x10DCO2STAR_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1bD CO2 Star, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xda\\xbc\\x12\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x1f[\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x10pCO2SURF_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1dsurface pCO2, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x04ppmv\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x8d3\\x17\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc4j\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\rDpCO2_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x17D pCO2, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x04ppmv\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf7\\xbc\\x1a\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xea[\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\nFG_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c%DIC Surface Gas Flux, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\rmmol/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x054\\x1f\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08kp\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\nPH_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1bSurface pH, Alternative CO2\\x94\\x8c\\x05units\\x94j\\xb7\\x02\\x00\\x00\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08F\\xc0#\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\xc8\\x02\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x08ALK_FLUX\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1dFlux of Alk from forcing data\\x94\\x8c\\x05units\\x94\\x8c\\x0bnmol/cm^2/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08p\\xa2&\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08L,\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x03DIC\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1aDissolved Inorganic Carbon\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf8\\xee&\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08j\\xf3\\x98\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\rDIC_zint_100m\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c3Dissolved Inorganic Carbon 0-100m Vertical Integral\\x94\\x8c\\x05units\\x94\\x8c\\x0bmmol/m^3 cm\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb6\\x0c\\xc0\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\t.\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0bDIC_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c+Dissolved Inorganic Carbon, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x08mmol/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08;[\\xc3\\x04\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08.\\xf3\\x98\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x15DIC_ALT_CO2_zint_100m\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8cDDissolved Inorganic Carbon, Alternative CO2 0-100m Vertical Integral\\x94\\x8c\\x05units\\x94\\x8c\\x0bmmol/m^3 cm\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08_l\\\\\\x05\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\n.\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x03ALK\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\nAlkalinity\\x94\\x8c\\x05units\\x94\\x8c\\x07meq/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08U\\xb6_\\x05\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd5\\x9b\\x93\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\rALK_zint_100m\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c#Alkalinity 0-100m Vertical Integral\\x94\\x8c\\x05units\\x94\\x8c\\nmeq/m^3 cm\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08Po\\xf3\\x05\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc9/\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x07STF_ALK\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c,Alkalinity Surface Flux, excludes FvICE term\\x94\\x8c\\x05units\\x94\\x8c\\x0cmeq/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08i\\xb7\\xf6\\x05\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x10\\x81\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0bALK_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1bAlkalinity, Alternative CO2\\x94\\x8c\\x05units\\x94\\x8c\\x07meq/m^3\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x043111\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x13TLONG TLAT z_t time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01K\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x95U\\xfb\\x05\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08l\\x9b\\x93\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x03z_t\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x15ALK_ALT_CO2_zint_100m\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c4Alkalinity, Alternative CO2 0-100m Vertical Integral\\x94\\x8c\\x05units\\x94\\x8c\\nmeq/m^3 cm\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x085\\x0c\\x8f\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xca/\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x0fSTF_ALK_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c=Alkalinity, Alternative CO2 Surface Flux, excludes FvICE term\\x94\\x8c\\x05units\\x94\\x8c\\x0cmeq/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x15[\\x92\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x06\\x81\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x12tend_zint_100m_DIC\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c=Dissolved Inorganic Carbon Tendency Vertical Integral, 0-100m\\x94\\x8c\\x05units\\x94\\x8c\\rmmol/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x8f\\xf7\\x96\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08%\\x8b\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x1atend_zint_100m_DIC_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8cNDissolved Inorganic Carbon, Alternative CO2 Tendency Vertical Integral, 0-100m\\x94\\x8c\\x05units\\x94\\x8c\\rmmol/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08*\\xa2\\x9b\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x13\\x8b\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x12tend_zint_100m_ALK\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c-Alkalinity Tendency Vertical Integral, 0-100m\\x94\\x8c\\x05units\\x94\\x8c\\x0cmeq/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe3J\\xa0\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08V\\x98\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94b\\x8c\\x1atend_zint_100m_ALK_ALT_CO2\\x94j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c>Alkalinity, Alternative CO2 Tendency Vertical Integral, 0-100m\\x94\\x8c\\x05units\\x94\\x8c\\x0cmeq/m^3 cm/s\\x94\\x8c\\x08grid_loc\\x94\\x8c\\x042110\\x94\\x8c\\x0ccell_methods\\x94\\x8c\\ntime: mean\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\x0fTLONG TLAT time\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00(K\\x01K\\x01K\\x01M\\x80\\x01M@\\x01t\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x89\\xf7\\xa4\\x06\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01(K\\x01K\\x01K\\x01K\\x01K\\x01t\\x94jU\\x02\\x00\\x00\\x89C\\x086\\x98\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_(\\x8c\\npolygon_id\\x94\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94t\\x94hdNu\\x86\\x94bhVj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c&boundaries for time-averaging interval\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00K\\x01K\\x01K\\x02\\x87\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00K\\x01K\\x01K\\x02\\x87\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01K\\x01\\x87\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01K\\x01\\x87\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa8:\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01K\\x01\\x87\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x0einjection_date\\x94\\x8c\\x0celapsed_time\\x94hc\\x87\\x94hdNu\\x86\\x94bh j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x14thickness of layer k\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00K<\\x85\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00K<\\x85\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x05>\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa2\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x03z_t\\x94\\x85\\x94hd}\\x94u\\x86\\x94bhXj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c midpoint of k to midpoint of k+1\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00K<\\x85\\x94j\\x12\\x02\\x00\\x00j|\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00K<\\x85\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00hrC\\x04\\x00\\x00\\xf0|\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa7>\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa4\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x03z_w\\x94\\x85\\x94hd}\\x94u\\x86\\x94bh%j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1aarray of u-grid longitudes\\x94\\x8c\\x05units\\x94\\x8c\\x0cdegrees_east\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x02\\xca\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x8d\\x8c\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh7j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x19array of u-grid latitudes\\x94\\x8c\\x05units\\x94\\x8c\\rdegrees_north\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc7`\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd2\\xf6\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh)j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1aarray of t-grid longitudes\\x94\\x8c\\x05units\\x94\\x8c\\x0cdegrees_east\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd1i\\n\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa7\\xa4\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh;j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x19array of t-grid latitudes\\x94\\x8c\\x05units\\x94\\x8c\\rdegrees_north\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb0\\x18\\x0f\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa6\\'\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh2j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94J\\x01\\x00\\x00\\x80\\x8c\\tlong_name\\x94\\x8c&k Index of Deepest Grid Cell on T Grid\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94J\\x01\\x00\\x00\\x80uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x14\\x02\\x00\\x00\\x8c\\x05int32\\x94\\x85\\x94R\\x94j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00ho\\x8c\\x02i4\\x94\\x89\\x88\\x87\\x94R\\x94(K\\x03hsNNNJ\\xff\\xff\\xff\\xffJ\\xff\\xff\\xff\\xffK\\x00t\\x94bC\\x04\\x01\\x00\\x00\\x80\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x8eR\\x14\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08/\\xa6\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhHj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94J\\x01\\x00\\x00\\x80\\x8c\\tlong_name\\x94\\x8c&k Index of Deepest Grid Cell on U Grid\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94J\\x01\\x00\\x00\\x80uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\xb3\\r\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j\\xc6\\r\\x00\\x00C\\x04\\x01\\x00\\x00\\x80\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf5\\x02\\x15\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xbb\\xa5\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh\"j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94J\\x01\\x00\\x00\\x80\\x8c\\tlong_name\\x94\\x8c$basin index number (signed integers)\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94J\\x01\\x00\\x00\\x80uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\xb3\\r\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x04usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j\\xc6\\r\\x00\\x00C\\x04\\x01\\x00\\x00\\x80\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe8\\xb2\\x15\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x1c%\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh^j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0farea of U cells\\x94\\x8c\\x05units\\x94\\x8c\\x0ccentimeter^2\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08<\\xea\\x15\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa1\\x10\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh@j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0farea of T cells\\x94\\x8c\\x05units\\x94\\x8c\\x0ccentimeter^2\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x15\\x05\\x1b\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xad\\x0e\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhTj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x17ocean depth at U points\\x94\\x8c\\x05units\\x94\\x8c\\ncentimeter\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xfa\\x1d \\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08K\\xd5\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh/j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x17ocean depth at T points\\x94\\x8c\\x05units\\x94\\x8c\\ncentimeter\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08}\\x05$\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc6\\xd9\\x03\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh.j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1ex-spacing centered at U points\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08{\\xe9\\'\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08I\\xc9\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh1j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1ey-spacing centered at U points\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xfc\\xbc,\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb0\\t\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhFj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1ex-spacing centered at T points\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe4\\xd81\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08J\\xcc\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh#j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1ey-spacing centered at T points\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08f\\xaf6\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08I\\x03\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhBj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c$cell widths on North sides of T cell\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe7\\xc4;\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe3\\xcc\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh?j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c#cell widths on East sides of T cell\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x02\\xa4@\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08:\\x06\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08t\\xb4E\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08Y\\xcb\\x04\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bh]j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c#cell widths on West sides of U cell\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x05\\x8aJ\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08t\\r\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhOj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c#angle grid makes with latitude line\\x94\\x8c\\x05units\\x94\\x8c\\x07radians\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nULONG ULAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb1\\xa9O\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\t;\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhGj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAAnkc=\\x94\\x8c\\tlong_name\\x94\\x8c-angle grid makes with latitude line on T grid\\x94\\x8c\\x05units\\x94\\x8c\\x07radians\\x94\\x8c\\x0bcoordinates\\x94\\x8c\\nTLONG TLAT\\x94\\x8c\\rmissing_value\\x94GG\\x9e\\x00\\x00\\x00\\x00\\x00\\x00uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00M\\x80\\x01M@\\x01\\x86\\x94sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sbj\\x08\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x07shuffle\\x94j\\x15\\x01\\x00\\x00K\\x08usbj\\x17\\x01\\x00\\x00)\\x81\\x94}\\x94j\\x0b\\x01\\x00\\x00}\\x94(j\\r\\x01\\x00\\x00\\x8c\\x04zlib\\x94j!\\x01\\x00\\x00K\\x04usb\\x87\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x9eG\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf2\\xeeT\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01K\\x01\\x86\\x94jU\\x02\\x00\\x00\\x89C\\x08*@\\x05\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_\\x8c\\x04nlat\\x94\\x8c\\x04nlon\\x94\\x86\\x94hdNu\\x86\\x94bhDj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0fCalendar Length\\x94\\x8c\\x05units\\x94\\x8c\\x04days\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08K?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhQj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1bAcceleration Due to Gravity\\x94\\x8c\\x05units\\x94\\x8c\\x0ecentimeter/s^2\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08S?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhKj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x17Earths Angular Velocity\\x94\\x8c\\x05units\\x94\\x8c\\x081/second\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08[?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh&j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\rEarths Radius\\x94\\x8c\\x05units\\x94\\x8c\\x0bcentimeters\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08c?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhWj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1aSpecific Heat of Sea Water\\x94\\x8c\\x05units\\x94\\x8c\\x07erg/g/K\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08k?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh3j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x0eSpeed of Sound\\x94\\x8c\\x05units\\x94\\x8c\\x0ccentimeter/s\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08s?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh>j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x13von Karman Constant\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08{?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh4j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x14Heat Capacity of Air\\x94\\x8c\\x05units\\x94\\x8c\\rjoule/kg/degK\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x83?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh9j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x13Ambient Air Density\\x94\\x8c\\x05units\\x94\\x8c\\x06kg/m^3\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x8b?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh(j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x14Density of Sea Water\\x94\\x8c\\x05units\\x94\\x8c\\x11gram/centimeter^3\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x93?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh*j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x16Density of Fresh Water\\x94\\x8c\\x05units\\x94\\x8c\\x11gram/centimeter^3\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x9b?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhYj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x19Stefan-Boltzmann Constant\\x94\\x8c\\x05units\\x94\\x8c\\x0fwatt/m^2/degK^4\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xa3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh5j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1bLatent Heat of Vaporization\\x94\\x8c\\x05units\\x94\\x8c\\x04J/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xab?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh\\'j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x15Latent Heat of Fusion\\x94\\x8c\\x05units\\x94\\x8c\\x05erg/g\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xb3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh+j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x15Latent Heat of Fusion\\x94\\x8c\\x05units\\x94\\x8c\\x04J/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xbb?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhCj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x18Ocean Reference Salinity\\x94\\x8c\\x05units\\x94\\x8c\\x04g/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xc3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhPj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x13Salinity of Sea Ice\\x94\\x8c\\x05units\\x94\\x8c\\x04g/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xcb?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh,j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x16Zero Point for Celsius\\x94\\x8c\\x05units\\x94\\x8c\\x04degK\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xd3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhNj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c!Convert Salt in gram/gram to g/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xdb?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhZj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c!Convert Salt in g/kg to gram/gram\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xe3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhLj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1eConvert Mass Flux to Sverdrups\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00\\x95\\x12\\x16\\x00\\x00\\x00\\x00\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xeb?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhAj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\x1eConvert Heat Flux to Petawatts\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xf3?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh!j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c#Convert Salt Flux to Sverdrups*g/kg\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\xfb?\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhIj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c\\'Convert Salt to Water (millimeters/day)\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x03@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhUj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c#Convert Windstress to Velocity Flux\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x0b@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhJj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c/Convert Heat and Solar Flux to Temperature Flux\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x13@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhMj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c:Convert Net Fresh Water Flux to Salt Flux (in model units)\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x1b@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh6j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94sh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08#@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh[j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c/Convert Salt Flux to Salt Flux (in model units)\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08+@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bh=j\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c#Number of Ocean T Points at Surface\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x083@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94bhSj\\xf7\\x01\\x00\\x00)\\x81\\x94N}\\x94(h\\x05}\\x94(\\x8c\\n_FillValue\\x94\\x8c\\x0cAAAAAAAA+H8=\\x94\\x8c\\tlong_name\\x94\\x8c#Number of Ocean U Points at Surface\\x94uh\\xf6j\\x07\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\n\\x02\\x00\\x00j\\r\\x02\\x00\\x00)\\x81\\x94}\\x94(j\\x10\\x02\\x00\\x00)j\\x12\\x02\\x00\\x00j\\x17\\x02\\x00\\x00j\\x18\\x02\\x00\\x00j\\x1b\\x02\\x00\\x00)\\x81\\x94}\\x94j\\x1e\\x02\\x00\\x00)sbj \\x02\\x00\\x00j#\\x02\\x00\\x00)\\x81\\x94}\\x94(h\\x8aj&\\x02\\x00\\x00j\\'\\x02\\x00\\x00j(\\x02\\x00\\x00ubj)\\x02\\x00\\x00j(\\x01\\x00\\x00)\\x81\\x94}\\x94j+\\x01\\x00\\x00j0\\x01\\x00\\x00sb\\x85\\x94j-\\x02\\x00\\x00Nj.\\x02\\x00\\x00j0\\x02\\x00\\x00j3\\x02\\x00\\x00C\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xf8\\x7f\\x94\\x86\\x94R\\x94j8\\x02\\x00\\x00}\\x94j:\\x02\\x00\\x00)ubj;\\x02\\x00\\x00j>\\x02\\x00\\x00)\\x81\\x94}\\x94(jA\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jH\\x02\\x00\\x00K\\x01\\x85\\x94R\\x94\\x89]\\x94\\x8c[file:///Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\\x94at\\x94bjN\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08;@\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bjY\\x02\\x00\\x00h\\x80h\\x82K\\x00\\x85\\x94h\\x84\\x87\\x94R\\x94(K\\x01K\\x01\\x85\\x94jU\\x02\\x00\\x00\\x89C\\x08\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x94t\\x94bububh_)hdNu\\x86\\x94buu\\x86\\x94b.'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "!pip install kerchunk" + "pickle.dumps(result)" ] }, { From fc6beafa7141c8c6531f0fbd30ada83252f8cfea Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 18:49:12 +0000 Subject: [PATCH 10/10] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/oae/mvp.ipynb | 155 +++++++++++++++++++++++------------------ 1 file changed, 89 insertions(+), 66 deletions(-) diff --git a/examples/oae/mvp.ipynb b/examples/oae/mvp.ipynb index 8e73c27c..2ebc50f8 100644 --- a/examples/oae/mvp.ipynb +++ b/examples/oae/mvp.ipynb @@ -99,6 +99,7 @@ ], "source": [ "import xarray as xr\n", + "\n", "xr.__version__" ] }, @@ -117,7 +118,6 @@ "metadata": {}, "outputs": [], "source": [ - "import glob\n", "import os" ] }, @@ -139,6 +139,7 @@ ], "source": [ "import virtualizarr as vz\n", + "\n", "vz.__version__" ] }, @@ -160,6 +161,7 @@ ], "source": [ "import zarr\n", + "\n", "zarr.__version__" ] }, @@ -169,7 +171,7 @@ "metadata": {}, "outputs": [], "source": [ - "bucket_url = 's3://cworthy/oae-efficiency-atlas/'" + "bucket_url = \"s3://cworthy/oae-efficiency-atlas/\"" ] }, { @@ -178,7 +180,9 @@ "metadata": {}, "outputs": [], "source": [ - "single_file_url = bucket_url + 'data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc'" + "single_file_url = (\n", + " bucket_url + \"data/experiments/000/01/alk-forcing.000-1999-01.pop.h.0347-01.nc\"\n", + ")" ] }, { @@ -187,7 +191,7 @@ "metadata": {}, "outputs": [], "source": [ - "s3fs_kwargs = {'anon': True, 'endpoint_url': 'https://data.source.coop'}" + "s3fs_kwargs = {\"anon\": True, \"endpoint_url\": \"https://data.source.coop\"}" ] }, { @@ -205,7 +209,7 @@ "metadata": {}, "outputs": [], "source": [ - "single_simulation_path = bucket_url + 'data/experiments/000/01/'" + "single_simulation_path = bucket_url + \"data/experiments/000/01/\"" ] }, { @@ -235,7 +239,9 @@ ], "source": [ "single_simulation_paths = fs.ls(single_simulation_path)\n", - "single_simulation_urls = ['https://data.source.coop/' + path for path in single_simulation_paths]\n", + "single_simulation_urls = [\n", + " \"https://data.source.coop/\" + path for path in single_simulation_paths\n", + "]\n", "single_simulation_urls[0:10]" ] }, @@ -245,7 +251,9 @@ "metadata": {}, "outputs": [], "source": [ - "os.environ['LITHOPS_CONFIG_FILE'] = '/Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config'" + "os.environ[\"LITHOPS_CONFIG_FILE\"] = (\n", + " \"/Users/tom/Documents/Work/Code/VirtualiZarr/examples/oae/.lithops_config\"\n", + ")" ] }, { @@ -256,57 +264,62 @@ "source": [ "# needed to do combine_by_coords, and each has only one value on each dataset\n", "ENSEMBLE_DIMENSION_COORDS = [\n", - " 'elapsed_time',\n", - " 'polygon_id',\n", - " 'injection_date',\n", + " \"elapsed_time\",\n", + " \"polygon_id\",\n", + " \"injection_date\",\n", "]\n", "OTHER_DIMENSION_COORDS = [\n", - " 'time_bounds',\n", - " 'z_t',\n", - " 'z_w',\n", - " 'z_t_150m',\n", - " 'z_w_bot',\n", - " 'z_w_top',\n", + " \"time_bounds\",\n", + " \"z_t\",\n", + " \"z_w\",\n", + " \"z_t_150m\",\n", + " \"z_w_bot\",\n", + " \"z_w_top\",\n", "]\n", "ONE_DIMENSIONAL_NON_DIMENSION_COORDS = [\n", - " 'dz',\n", - " 'dzw',\n", + " \"dz\",\n", + " \"dzw\",\n", "]\n", "# so tiny it takes less memory to store their values than to store references to them\n", "SCALARS = [\n", - " 'T0_Kelvin',\n", - " 'cp_air',\n", - " 'cp_sw',\n", - " 'days_in_norm_year',\n", - " 'fwflux_factor',\n", - " 'grav',\n", - " 'heat_to_PW',\n", - " 'hflux_factor',\n", - " 'latent_heat_fusion',\n", - " 'latent_heat_fusion_mks',\n", - " 'latent_heat_vapor',\n", - " 'mass_to_Sv',\n", - " 'momentum_factor',\n", - " 'nsurface_t',\n", - " 'nsurface_u',\n", - " 'ocn_ref_salinity',\n", - " 'omega',\n", - " 'ppt_to_salt',\n", - " 'radius',\n", - " 'rho_air',\n", - " 'rho_fw',\n", - " 'rho_sw',\n", - " 'salinity_factor',\n", - " 'salt_to_Svppt',\n", - " 'salt_to_mmday',\n", - " 'salt_to_ppt',\n", - " 'sea_ice_salinity',\n", - " 'sflux_factor',\n", - " 'sound',\n", - " 'vonkar',\n", - " 'stefan_boltzmann'\n", + " \"T0_Kelvin\",\n", + " \"cp_air\",\n", + " \"cp_sw\",\n", + " \"days_in_norm_year\",\n", + " \"fwflux_factor\",\n", + " \"grav\",\n", + " \"heat_to_PW\",\n", + " \"hflux_factor\",\n", + " \"latent_heat_fusion\",\n", + " \"latent_heat_fusion_mks\",\n", + " \"latent_heat_vapor\",\n", + " \"mass_to_Sv\",\n", + " \"momentum_factor\",\n", + " \"nsurface_t\",\n", + " \"nsurface_u\",\n", + " \"ocn_ref_salinity\",\n", + " \"omega\",\n", + " \"ppt_to_salt\",\n", + " \"radius\",\n", + " \"rho_air\",\n", + " \"rho_fw\",\n", + " \"rho_sw\",\n", + " \"salinity_factor\",\n", + " \"salt_to_Svppt\",\n", + " \"salt_to_mmday\",\n", + " \"salt_to_ppt\",\n", + " \"sea_ice_salinity\",\n", + " \"sflux_factor\",\n", + " \"sound\",\n", + " \"vonkar\",\n", + " \"stefan_boltzmann\",\n", "]\n", - "LOW_DIMENSIONAL_VARS = ENSEMBLE_DIMENSION_COORDS + OTHER_DIMENSION_COORDS + ONE_DIMENSIONAL_NON_DIMENSION_COORDS + SCALARS" + "LOW_DIMENSIONAL_VARS = (\n", + " ENSEMBLE_DIMENSION_COORDS\n", + " + OTHER_DIMENSION_COORDS\n", + " + ONE_DIMENSIONAL_NON_DIMENSION_COORDS\n", + " + SCALARS\n", + ")" ] }, { @@ -28908,10 +28921,11 @@ "combined_vds_single_simulation = vz.open_virtual_mfdataset(\n", " single_simulation_urls[0:2],\n", " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", + " coords=\"minimal\",\n", + " compat=\"override\",\n", " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", - " parallel='lithops',\n", + " parallel=\"lithops\",\n", ")\n", "combined_vds_single_simulation" ] @@ -28945,7 +28959,7 @@ } ], "source": [ - "combined_vds_single_simulation['dz'].values" + "combined_vds_single_simulation[\"dz\"].values" ] }, { @@ -28965,7 +28979,9 @@ } ], "source": [ - "combined_vds_single_simulation.drop_vars(LOW_DIMENSIONAL_VARS, errors='ignore').virtualize.nbytes / 1e3" + "combined_vds_single_simulation.drop_vars(\n", + " LOW_DIMENSIONAL_VARS, errors=\"ignore\"\n", + ").virtualize.nbytes / 1e3" ] }, { @@ -29054,7 +29070,7 @@ "outputs": [], "source": [ "storage = icechunk.storage.local_filesystem_storage(\n", - " './ic-oae/',\n", + " \"./ic-oae/\",\n", ")" ] }, @@ -29073,7 +29089,9 @@ "metadata": {}, "outputs": [], "source": [ - "config.set_virtual_chunk_container(icechunk.VirtualChunkContainer(\"s3\", \"s3://\", icechunk.s3_store(region=\"us-west-2\")))" + "config.set_virtual_chunk_container(\n", + " icechunk.VirtualChunkContainer(\"s3\", \"s3://\", icechunk.s3_store(region=\"us-west-2\"))\n", + ")" ] }, { @@ -29082,7 +29100,9 @@ "metadata": {}, "outputs": [], "source": [ - "credentials = icechunk.containers_credentials(s3=icechunk.s3_credentials(anonymous=True))" + "credentials = icechunk.containers_credentials(\n", + " s3=icechunk.s3_credentials(anonymous=True)\n", + ")" ] }, { @@ -29109,7 +29129,9 @@ "metadata": {}, "outputs": [], "source": [ - "combined_vds_single_simulation.drop_vars(LOW_DIMENSIONAL_VARS, errors='ignore').virtualize.to_icechunk(session.store)" + "combined_vds_single_simulation.drop_vars(\n", + " LOW_DIMENSIONAL_VARS, errors=\"ignore\"\n", + ").virtualize.to_icechunk(session.store)" ] }, { @@ -29938,7 +29960,7 @@ } ], "source": [ - "combined_vds_single_simulation.virtualize.nbytes / 1e6" + "combined_vds_single_simulation.virtualize.nbytes / 1e6" ] }, { @@ -30035,10 +30057,11 @@ "result = vz.open_virtual_mfdataset(\n", " single_simulation_urls[0:1],\n", " combine=\"by_coords\",\n", - " coords=\"minimal\", compat=\"override\",\n", + " coords=\"minimal\",\n", + " compat=\"override\",\n", " loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", - " #parallel='lithops',\n", + " # parallel='lithops',\n", ")\n", "result" ] @@ -30099,7 +30122,7 @@ "%%time\n", "result = vz.open_virtual_dataset(\n", " single_simulation_urls[0],\n", - " #loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " # loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", ")\n", "result" @@ -30122,7 +30145,7 @@ } ], "source": [ - "result['ALK'].data.metadata" + "result[\"ALK\"].data.metadata" ] }, { @@ -30152,7 +30175,7 @@ } ], "source": [ - "pickle.dumps(result['ALK'].data.metadata)" + "pickle.dumps(result[\"ALK\"].data.metadata)" ] }, { @@ -31162,8 +31185,8 @@ "source": [ "%%time\n", "result = vz.open_virtual_dataset(\n", - " '/Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc',\n", - " #loadable_variables=LOW_DIMENSIONAL_VARS,\n", + " \"/Users/tom/Documents/Work/Code/VirtualiZarr/alk-forcing.000-1999-01.pop.h.0347-01.nc\",\n", + " # loadable_variables=LOW_DIMENSIONAL_VARS,\n", " decode_times=False,\n", ")\n", "result"