Thingus commented on issue #35292: URL: https://github.com/apache/arrow/issues/35292#issuecomment-1531144809
Hi @raulcd Letting you know that this has been an intermediate issue for me today and last week on a similar situation, with the following (snipped) dockerfile: ``` FROM postgres:12.11@sha256:8bff0179347982a6c083e1ed69cf4b65f12b8ae76e61f63b238c8c1ba4714c86 ...snip... RUN apt-get update \ && apt install -y -V ca-certificates lsb-release wget RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb \ && apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb \ && apt update \ && apt install -y -V libarrow-dev libparquet-dev \ ``` The second RUN failed with 403 forbidden, so I tried running it from bash in the cached container; `apt install libarrow-dev` failed with the same error the first time, but happily ran on a retry. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org