Skip to content

Commit

Permalink
Update templates/pyspark.dockerfile
Browse files Browse the repository at this point in the history
collapsed into one pip install

Co-authored-by: Damon P. Cortesi <[email protected]>
  • Loading branch information
dabrun and dacort committed Apr 25, 2023
1 parent 93bdcae commit 185e9f2
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions templates/pyspark.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@ RUN if [ "$TARGETARCH" != "amd64" ]; then yum install -y gcc python3-devel; fi
# Upgrade pip first
RUN python3 -m pip install -U pip

# Enable Jupyter notebooks
RUN python3 -m pip install ipykernel

# Enable pytest
RUN python3 -m pip install pytest
# Enable Jupyter notebooks and pytest
RUN python3 -m pip install \
ipykernel \
pytest

# Switch back to the default user
USER hadoop:hadoop

0 comments on commit 185e9f2

Please sign in to comment.