Skip to content

Commit

Permalink
re-organized Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rongxin-liu committed Jun 24, 2024
1 parent 1313e24 commit 78186d0
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ RUN rm -rf /opt/cs50/bin/R
RUN apt-get update -qq && apt-get install -y \
cmake \
jq \
libhdf5-dev \
pkg-config \
r-base
pkg-config


# Install additional Python packages
Expand All @@ -39,6 +37,16 @@ RUN pip3 install --no-cache-dir \
fpdf2==2.7.6


# Install R for CS50 R
RUN apt-get update -qq && apt-get install -y \
libhdf5-dev `# For R` \
liblapack3 `# For R` \
libpangocairo-1.0-0 `# For R` \
libtiff6 `# For R` \
libxt6 `# For R` \
r-base


# Install ML packages for CS50 AI
RUN pip3 install --no-cache-dir \
nltk \
Expand Down

0 comments on commit 78186d0

Please sign in to comment.