From e7accd2f9ab75011980452ca4196415a31f21de9 Mon Sep 17 00:00:00 2001 From: Xiaoyong Zhu Date: Mon, 27 Feb 2023 09:27:57 -0800 Subject: [PATCH] Update FeathrSandbox.Dockerfile --- FeathrSandbox.Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FeathrSandbox.Dockerfile b/FeathrSandbox.Dockerfile index c69e0bc8e..25a48ec3b 100644 --- a/FeathrSandbox.Dockerfile +++ b/FeathrSandbox.Dockerfile @@ -16,7 +16,10 @@ COPY . . RUN ./gradlew build # Stage 3: build the docker image for feathr sandbox -FROM jupyter/pyspark-notebook + +# Reference: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#versioning-via-image-tags +# For a short term we pin the spark runtime to 3.3.0 which is used in databricks LTS: https://docs.databricks.com/release-notes/runtime/11.3.html +FROM jupyter/pyspark-notebook:spark-3.3.0 USER root