Skip to content

Commit

Permalink
Merge pull request #131 from SuperCowPowers/docker_stuff
Browse files Browse the repository at this point in the history
adding Java install for docker image
  • Loading branch information
brifordwylie authored Mar 9, 2021
2 parents d236139 + 3de1f18 commit 6271847
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci_cd/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6271847

Please sign in to comment.