Skip to content

Commit

Permalink
Adding in some required utilties (#23)
Browse files Browse the repository at this point in the history
* Adding in some required utilties

For the simulation next semester, it would be useful to let
the students have access to numpy as a math manipulation package.
I also need to have valgrind as we move to more use of docker
as our preferred way to run the grader. This should handle both
of the issues.

* Responding to PR

Good point. This should remove pip.
  • Loading branch information
wdturner authored Apr 17, 2024
1 parent fcab211 commit 9115cd3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dockerfiles/csci4210/ubuntu22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,15 @@ RUN apt-get update \
&& apt-get -y --no-install-recommends install gcc g++ \
&& rm -rf /var/lib/apt/lists/*

# Install Valgrind
RUN apt-get update \
&& apt-get -y --no-install-recommends install valgrind \
&& rm -rf /var/lib/apt/lists/*

# Install numpy
RUN apt-get update \
&& apt-get -y --no-install-recommends install python3-pip \
&& pip3 install numpy \
&& apt-get -y remove python3-pip \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 9115cd3

Please sign in to comment.