Skip to content

Commit

Permalink
More Python3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaycedowell committed Feb 5, 2021
1 parent ade1d8b commit 2bebc4e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

# Update ctypesgen
RUN curl -fSsL -O https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py && \
python3 get-pip.py && \
rm get-pip.py
RUN pip --no-cache-dir install \
git+https://github.com/olsonse/ctypesgen.git@9bd2d249aa4011c6383a10890ec6f203d7b7990f
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
pkg-config \
software-properties-common \
python \
python-dev \
pylint \
python3 \
python3-dev \
pylint3 \
doxygen \
exuberant-ctags \
nano \
Expand All @@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
rm -rf /var/lib/apt/lists/*

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

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

0 comments on commit 2bebc4e

Please sign in to comment.