From 3de1f187f48f6cf9ee979f05dca9eee4cdc54690 Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Mon, 8 Mar 2021 19:12:57 -0700 Subject: [PATCH] adding Java install for docker image --- ci_cd/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci_cd/Dockerfile b/ci_cd/Dockerfile index 3fcbb15..45120c2 100644 --- a/ci_cd/Dockerfile +++ b/ci_cd/Dockerfile @@ -1,6 +1,10 @@ -# Grab a docker Python 3.8 image +# Grab a docker image with java and python FROM python:3.8 +# Install Java (for PySpark) +RUN apt-get update +RUN apt-get install -y default-jdk + # Setup our ENV vars ENV INSTALL_DIR /app ENV PYTHONUNBUFFERED=1