vertica / spark-connector

This component acts as a bridge between Spark and Vertica, allowing the user to either retrieve data from Vertica for processing in Spark, or store processed data from Spark into Vertica.
Apache License 2.0
20 stars 23 forks source link

Client Dockerfile points to a missing repo during Python version sync #532

Closed ai-bq closed 1 year ago

ai-bq commented 1 year ago

Our Dockerfile in the ./client context has a Python version sync at the end that looks like this:

# Sync Python version
RUN curl https://raw.githubusercontent.com/bitnami/bitnami-docker-spark/master/3.3/debian-11/prebuildfs/opt/bitnami/scripts/libcomponent.sh -o /opt/bitnami/scripts/libcomponent.sh && \
    . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.10.6-8" --checksum 84801ae4aee44f17012410d30a7d45e7e30ff842469fea2e5196050142713efc

However this repo has been moved to https://github.com/bitnami/containers/tree/main/bitnami/spark.

The Python sync needs to be updated to point to this new location in order for our Docker environment to run again.