faint-dress-64989
09/19/2023, 6:02 PMEngine traceback:
in `package` goal
ProcessExecutionFailure: Process 'Building docker image <http://ghcr.io/unique-image-name:latest|ghcr.io/unique-image-name:latest> +1 additional tag.' failed with exit code 1.
stdout:
/pants/backend/docker/goals/package_image.py", line 432, in build_docker_image
raise ProcessExecutionFailure(
pants.engine.process.ProcessExecutionFailure: Process 'Building docker image <http://ghcr.io/onelive-dev/maergo-tracking-service:latest|ghcr.io/onelive-dev/maergo-tracking-service:latest> +1 additional tag.' failed with exit code 1.
stdout:
stderr:
ERROR: mkdir /home/runner: operation not supported
The Dockerfile below does not call mkdir. I'm not sure where this error is coming from or how to resolve it. Do I need to grant some permissions to the build system?
FROM python:3.10-bullseye
COPY src.python.service/main.pex /bin
ENTRYPOINT ["/bin/main.pex"]
curved-television-6568
09/19/2023, 6:17 PMFROM
image you’re using, feels unlikely that it would be from any ONBUILD
triggers. Can you try to build the image directly using the docker
cli?faint-dress-64989
09/19/2023, 6:17 PMfaint-dress-64989
09/19/2023, 6:20 PMfaint-dress-64989
09/19/2023, 6:20 PMCOPY ./main.pex /bin
faint-dress-64989
09/19/2023, 6:21 PM