Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY --from=redis /usr/local/ /usr/local/
COPY ./opt/ opt/
COPY ./test/test_requirements.txt test/

RUN PIP=19.3.1 FORCE=1 ./opt/readies/bin/getpy3
RUN PIP=1 FORCE=1 ./opt/readies/bin/getpy3
RUN ./opt/system-setup.py

ARG DEPS_ARGS=""
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY --from=redis /usr/local/ /usr/local/
COPY ./opt/ opt/
COPY ./test/test_requirements.txt test/

RUN PIP=19.3.1 FORCE=1 ./opt/readies/bin/getpy3
RUN PIP=1 FORCE=1 ./opt/readies/bin/getpy3
RUN ./opt/system-setup.py

ARG DEPS_ARGS=""
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile.gpu-test
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ COPY --from=redis /usr/local/ /usr/local/
COPY ./opt/ opt/
COPY ./test/test_requirements.txt test/

RUN PIP=19.3.1 ./opt/readies/bin/getpy3
RUN python3 -m pip install virtualenv
RUN PIP=1 VENV=1 FORCE=1 ./opt/readies/bin/getpy3

RUN set -e ;\
python3 -m virtualenv venv --system-site-packages ;\
Expand Down
2 changes: 1 addition & 1 deletion opt/readies
Submodule readies updated 4 files
+3 −0 bin/getpy2
+3 −0 bin/getpy3
+19 −0 bin/lastver
+6 −2 paella/setup.py
5 changes: 3 additions & 2 deletions opt/system-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ def common_first(self):
self.install_downloaders()
self.setup_pip()
self.pip_install("wheel virtualenv")
self.pip_install("setuptools --upgrade")
# if self.osnick == 'xenial':
# self.pip_install("setuptools --upgrade")
# self.pip_install("-IU --force-reinstall setuptools")

if self.os == 'linux':
self.install("ca-certificates")
self.install("git unzip wget patchelf")
self.install("coreutils") # for realpath

def debian_compat(self):
self.pip_install("-IU --force-reinstall setuptools")
self.install("gawk")
self.install("build-essential cmake")
self.install("python3-regex")
Expand Down