Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jul 19, 2024
1 parent 601c490 commit 8645bd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ USER root

# Build & install everything
WORKDIR /tmp
ENV DEBIAN_FRONTEND=noninteractivea
ENV DEBIAN_FRONTEND=noninteractive
ARG APT_UPDATE="apt-get update"
RUN ${APT_UPDATE}
ARG APT_UPGRADE="apt-get upgrade -y"
Expand Down
4 changes: 4 additions & 0 deletions docker/install_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/conda-archive-keyring.gpg] h

${APT_UPDATE}
${APT_INSTALL} conda
. /opt/conda/etc/profile.d/conda.sh
conda update conda
${APT_CLEAN}
rm -r ~/.cache
mkdir ~/.cache
4 changes: 2 additions & 2 deletions docker/install_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
set -e
set -x

DEV_PKGS="libc6-dev cmake pkg-config make git patch"
DEV_PKGS="cmake pkg-config make git patch"
PIP_INSTALL="${PYTHON_CMD} -m pip install"

if [ "${INFER_HW}" != "intel" ]
then
DEV_PKGS="${DEV_PKGS} gcc g++"
DEV_PKGS="${DEV_PKGS} gcc g++ libc6-dev"
fi

${APT_INSTALL} ${DEV_PKGS}
Expand Down

0 comments on commit 8645bd1

Please sign in to comment.