Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Added USER = "$USER" before pip3 install of dependencies.
  • Loading branch information
DrB-S authored Nov 10, 2023
1 parent 0bd2ef8 commit 44df088
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ LABEL maintainer.email="[email protected]"
# 'RUN' executes code during the build
# Install Python and pip
RUN apt-get update && apt-get install -y --no-install-recommends \
python3 python3-pip && \
apt-utils python3 python3-pip && \
apt-get clean && rm -rf /var/lib/apt/lists/*

USER "$USER"
# Install Python dependencies
RUN pip3 install pandas numpy pathlib seaborn matplotlib scipy

Expand Down

0 comments on commit 44df088

Please sign in to comment.