Fix virtualenv installation for GPU

This commit is contained in:
Andreas Argyriou 2021-09-06 16:56:08 +00:00
Родитель a2d79b4cad
Коммит e421a49617
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -93,10 +93,13 @@ FROM nvidia/cuda:10.0-cudnn7-runtime-ubuntu18.04 AS gpu
ARG HOME
ARG VIRTUAL_ENV
ENV HOME="${HOME}"
WORKDIR ${HOME}
# Get up to date with base
COPY --from=base ${HOME} .
RUN if [ "${VIRTUAL_ENV}" = "virtualenv" ]; then rm -rf ${HOME}/${VIRTUAL_ENV}; fi
RUN apt-get update && \
apt-get install -y build-essential cmake
RUN if [ "${VIRTUAL_ENV}" = "conda" ] ; then apt-get install -y libpython3.7; fi