Skip to content

Commit 5d73a68

Browse files
authored
Make base images use ubuntu 18 and support dbr 7.x (#49)
* Move ubuntu 16 to experimental, ubuntu 18 / dbr 7 to standard * move python virtualenv to experiemental * upgrade python * upgrade dbfsfuse, ssh, standard containers
1 parent d10ae9a commit 5d73a68

6 files changed

Lines changed: 9 additions & 10 deletions

File tree

File renamed without changes.

experimental/ubuntu/ubuntu18.04-minimal/ubuntu18.04-minimal renamed to experimental/ubuntu/ubuntu16.04-minimal/Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
FROM ubuntu:18.04
1+
# The minimal image defines the minimum requirements to run a Docker image in Databricks.
2+
# If you are building your own image from scratch, make sure you have the libraries
3+
# included below.
4+
5+
FROM ubuntu:16.04
26

37
RUN apt-get update \
48
&& apt-get install --yes \
@@ -8,7 +12,6 @@ RUN apt-get update \
812
sudo \
913
coreutils \
1014
procps \
11-
strace \ #strace should be installed for users who are trying to set withStrace on their clusters
1215
&& /var/lib/dpkg/info/ca-certificates-java.postinst configure \
1316
&& apt-get clean \
1417
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

experimental/ubuntu/ubuntu18.04-minimal/README.md renamed to experimental/ubuntu/ubuntu16.04-minimal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This image specifically for Databricks Runtime 7.x; please check there for reference https://docs.databricks.com/release-notes/runtime/releases.html#databricks-runtime-releases
1+
# This image specifically for Databricks Runtime 6.x; please check here for reference https://docs.databricks.com/release-notes/runtime/releases.html#databricks-runtime-releases
22

33
# Minimal Container
44

ubuntu/minimal/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# The minimal image defines the minimum requirements to run a Docker image in Databricks.
2-
# If you are building your own image from scratch, make sure you have the libraries
3-
# included below.
4-
5-
FROM ubuntu:16.04
1+
FROM ubuntu:18.04
62

73
RUN apt-get update \
84
&& apt-get install --yes \

ubuntu/minimal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This image specifically for Databricks Runtime 6.x; please check here for reference https://docs.databricks.com/release-notes/runtime/releases.html#databricks-runtime-releases
1+
# This image specifically for Databricks Runtime 7.x; please check there for reference https://docs.databricks.com/release-notes/runtime/releases.html#databricks-runtime-releases
22

33
# Minimal Container
44

ubuntu/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:16.04 as builder
1+
FROM ubuntu:18.04 as builder
22

33
RUN apt-get update && apt-get install --yes \
44
wget \

0 commit comments

Comments
 (0)