-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Labels
bugplatform-issueIssue is specific to an OS or desktopIssue is specific to an OS or desktoppriority-high
Milestone
Description
Describe the bug
The Dockerfile is built on ubuntu:latest, but since 24 released cura-engine is no longer available so ippsample fails to build.
https://packages.ubuntu.com/search?keywords=cura-engine
To Reproduce
Steps to reproduce the behavior:
- Attempt to run
docker build
Expected behavior
The build succeeds
Actual behavior
The build fails with this error:
> [2/9] RUN apt-get -qq update && apt-get install -y build-essential autoconf avahi-daemon avahi-utils cura-engine libavahi-client-dev libjpeg-dev libnss-mdns libpam-dev libpng-dev libssl-dev libusb-1.0-0-dev zlib1g-dev net-tools iputils-ping vim avahi-daemon tcpdump man curl:
2.452 Reading state information...
2.474 Package cura-engine is not available, but is referred to by another package.
2.474 This may mean that the package is missing, has been obsoleted, or
2.474 is only available from another source
2.474
2.475 E: Package 'cura-engine' has no installation candidate
------
Dockerfile:3
--------------------
1 | FROM ubuntu:latest
2 | ARG DEBIAN_FRONTEND=noninteractive
3 | >>> RUN apt-get -qq update && apt-get install -y build-essential autoconf avahi-daemon avahi-utils cura-engine libavahi-client-dev libjpeg-dev libnss-mdns libpam-dev libpng-dev libssl-dev libusb-1.0-0-dev zlib1g-dev net-tools iputils-ping vim avahi-daemon tcpdump man curl
4 | # Make changes necessary to run Avahi for DNS-SD support
5 | RUN sed -ie 's/rlimit-nproc=3/rlimit-nproc=8/' /etc/avahi/avahi-daemon.conf
--------------------
Version of the software
latest
Metadata
Metadata
Assignees
Labels
bugplatform-issueIssue is specific to an OS or desktopIssue is specific to an OS or desktoppriority-high