The Docker build currently fails because the Brother package brscan-skey-0.3.2-0.amd64.deb can no longer be downloaded from the URL used in the Dockerfile.
During the build process the following command is executed:
wget https://download.brother.com/welcome/dlf006652/brscan-skey-0.3.2-0.amd64.deb
However, the file is no longer available at this location and the server responds with HTTP 404, which causes the Docker build to abort with:
wget returns exit code 8 when the server issues an error response (e.g. 404).
Because this download step is part of the build stage, the entire image build fails.
Steps to reproduce
- Run the Docker build.
- The build reaches the step where the Brother packages are downloaded.
- The download of
brscan-skey-0.3.2-0.amd64.deb returns 404.
- The build stops with exit code 8.
Suggested fixes
Possible solutions could be:
- Update the download URL to a valid location.
- Replace the package with a newer version if available.
- Mirror the package in the repository or another stable location.
The Docker build currently fails because the Brother package
brscan-skey-0.3.2-0.amd64.debcan no longer be downloaded from the URL used in the Dockerfile.During the build process the following command is executed:
However, the file is no longer available at this location and the server responds with HTTP 404, which causes the Docker build to abort with:
wgetreturns exit code 8 when the server issues an error response (e.g. 404).Because this download step is part of the build stage, the entire image build fails.
Steps to reproduce
brscan-skey-0.3.2-0.amd64.debreturns 404.Suggested fixes
Possible solutions could be: