Open bblommers opened 1 day ago
@sarsharma Hope you don't mind me tagging you explicitly. It looks like there is supposed to be a GithubAction that automatically assigns you, but that currently fails: https://github.com/microsoft/Oryx/actions/runs/11835777845/job/32979270835
Hi @bblommers Can you please check if the issue still persists if you try with these new build images
mcr.microsoft.com/oryx/build:github-actions-debian-bookworm-20241021.3
mcr.microsoft.com/oryx/build:github-actions-debian-bullseye-20241021.3
Please note that buster based images and build:full-debian-bullseye
tag are no longer being maintained. I will update the docs accordingly.
Thanks
Hi @sarsharma, thank you for the reply - I can confirm that it does work with both the images you mentioned.
Is there any documentation on what each tagged build contains? A tag called github-actions..
sounds like it is meant to only be used in Github Actions, but are there any limitations/problems with using it locally?
Bug Report
Using the
full-debian-bullseye
docker image, I'm not able to build a simple Python app, as it fails with the message:-m: command not found
Build log
Reproduction steps
Start the oryx image:
Create a simple app:
Run the build process:
Debug
The relevant lines in the build script, what's actually causing the error
-m command not found
:So it looks like the variable
$python
is not set.This problem also occurs with the
full-debian-buster
image.When running this against the
latest
image, I ran into https://github.com/microsoft/Oryx/issues/2162, which is why I attempted it using the newer buster/bullseye images.