## The problem
Issue browserless/browserless#3245 (closed, 11 comments): **Describe the bug** This image, which is currently the `browserless/chrome:latest`, gives me the error `The repository 'http://archive.canonical.com/ubuntu kinetic Release' does not have a Release file.` for the command `RUN apt-get update -y` in my Dockerfile **To Reproduce** Steps to reproduce the behavior: Create a Dockerfile and input the following contents ``` FROM browserless/chrome:latest USER root RUN apt-get update -y ``` **Expected behavior** The docker image should be created without any such errors **Desktop (please complete the following information):** - OS: macOS Ventura 13.3.

## What fixed it
The failure came from an obsolete Ubuntu partner repository baked into the browserless install. PR #3531 removed it, and the reporter confirmed the latest release installs cleanly again. Update to the release containing that PR and retry the install.