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
I get the following error when trying to build an image from the Dockerfile.debian-11.multistage Dockerfile:
=> ERROR [m2st_packages 1/1] RUN ./install-packages.sh 0.1s
------
> [m2st_packages 1/1] RUN ./install-packages.sh:
0.101 Distribution debian12 is not yet supported.
------
1 warning found (use docker --debug to expand):
- JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals (line 49)
Dockerfile.debian-11.multistage:33
--------------------
31 | FROM m2st_base AS m2st_packages
32 | # Install packaged dependencies
33 | >>> RUN ./install-packages.sh
34 |
35 | FROM m2st_packages AS m2st_dependencies
--------------------
ERROR: failed to solve: process "/bin/sh -c ./install-packages.sh" did not complete successfully: exit code: 54
Changing the base image to debian:11-slim seems to fix the error however.
Build environment: ARM based MacBook (MacOS 15.0)
I can see if this also occurs on x86 in Windows or Linux if this is likely linked to trying to build the image from an ARM based machine.
The text was updated successfully, but these errors were encountered:
I get the following error when trying to build an image from the
Dockerfile.debian-11.multistage
Dockerfile:Changing the base image to
debian:11-slim
seems to fix the error however.Build environment: ARM based MacBook (MacOS 15.0)
I can see if this also occurs on x86 in Windows or Linux if this is likely linked to trying to build the image from an ARM based machine.
The text was updated successfully, but these errors were encountered: