Docker – Which combination of pyspark and delta versions should I use?
I'm using the jupyter/pyspark-notebook docker image to develop a spark script. My dockerfile looks like this: FROM jupyter/pyspark-notebook USER root COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt && rm requirements.txt # this is a default user and the…