Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
FROM ubuntu:18.04
# The minimal image defines the minimum requirements to run a Docker image in Databricks.
# If you are building your own image from scratch, make sure you have the libraries
# included below.

FROM ubuntu:16.04

RUN apt-get update \
&& apt-get install --yes \
Expand All @@ -8,7 +12,6 @@ RUN apt-get update \
sudo \
coreutils \
procps \
strace \ #strace should be installed for users who are trying to set withStrace on their clusters
&& /var/lib/dpkg/info/ca-certificates-java.postinst configure \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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
# 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

# Minimal Container

Expand Down
6 changes: 1 addition & 5 deletions ubuntu/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# The minimal image defines the minimum requirements to run a Docker image in Databricks.
# If you are building your own image from scratch, make sure you have the libraries
# included below.

FROM ubuntu:16.04
FROM ubuntu:18.04

RUN apt-get update \
&& apt-get install --yes \
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/minimal/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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
# 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

# Minimal Container

Expand Down
2 changes: 1 addition & 1 deletion ubuntu/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:16.04 as builder
FROM ubuntu:18.04 as builder

RUN apt-get update && apt-get install --yes \
wget \
Expand Down