You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently building the docker image on mac M1 is failing during the poetry install.
Simple docker build -t cr01 .
This stops outputting the poetry install stage, due to [output clipped, log limit 2MiB reached]. I believe it's still working in the background, it just doesn't show the output. This continued for 40 mins or so, until it stopped with executor failed running [/bin/sh -c poetry install --no-interaction --no-ansi -vvv]: exit code: 137, which is apparently the container stopping due to high memory usage.
This was recommended to fix the "output clipped" problem, but probably won't fix the problem of the build never finishing.
appears that the output stopped being added to that file after about 40 mins with no indication that it had died, but after waiting a further 20 mins with no update to the file, decided that had also died
Tried commenting the poetry install from the Dockerfile, then installing poetry in an interactive container.
this ran for ages then finally Resolving dependencies... (4089.7s)Killed, meaning it tried to resolve dependencies for over an hour then died, with no more error message than that. Tensorflow is not installed after this.
Also tried just poetry install into a conda venv on the m1 without docker, unsuccessfully
tensorflow-io seems to be the only one that fails, can't find compatible version, but then anything tensorflow related is not installed. Tried going down the rabbithole of instructions for getting tensorflow working on M1 but it seems very horrible. Didn't find anything specific to the situation of using conda to install specific versions of python then poetry to install dependencies into the conda environment.
The text was updated successfully, but these errors were encountered:
Currently building the docker image on mac M1 is failing during the poetry install.
docker build -t cr01 .
[output clipped, log limit 2MiB reached]
. I believe it's still working in the background, it just doesn't show the output. This continued for 40 mins or so, until it stopped withexecutor failed running [/bin/sh -c poetry install --no-interaction --no-ansi -vvv]: exit code: 137
, which is apparently the container stopping due to high memory usage.export DOCKER_BUILDKIT=0
thendocker build --progress plain -t cr03 . > output01.txt
poetry install
from the Dockerfile, then installing poetry in an interactive container.Resolving dependencies... (4089.7s)Killed
, meaning it tried to resolve dependencies for over an hour then died, with no more error message than that. Tensorflow is not installed after this.The text was updated successfully, but these errors were encountered: