Skip to content

Commit

Permalink
Merge 0600ccb into a53b35b
Browse files Browse the repository at this point in the history
  • Loading branch information
jaycedowell committed Feb 5, 2021
2 parents a53b35b + 0600ccb commit 5be30bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ ENV TERM xterm

# Get dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
python-pip \
pylint \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Update ctypesgen
RUN curl -fSsL -O https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py && \
rm get-pip.py
RUN pip --no-cache-dir install \
git+https://github.com/olsonse/ctypesgen.git@9bd2d249aa4011c6383a10890ec6f203d7b7990f

Expand Down
4 changes: 1 addition & 3 deletions Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
python \
python-dev \
python-pip \
pylint \
doxygen \
exuberant-ctags \
Expand All @@ -22,9 +23,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN curl -fSsL -O https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py && \
rm get-pip.py
RUN pip --no-cache-dir install \
setuptools \
numpy \
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile_prereq.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
python \
python-dev \
python-pip \
doxygen \
exuberant-ctags \
nano \
Expand All @@ -21,9 +22,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN curl -fSsL -O https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py && \
rm get-pip.py
RUN pip --no-cache-dir install \
setuptools \
numpy \
Expand Down

0 comments on commit 5be30bc

Please sign in to comment.