From 30fa3e527bb70db5b06f41be7f89c0dd015b9c18 Mon Sep 17 00:00:00 2001 From: b08x Date: Sun, 24 Mar 2024 00:28:33 -0400 Subject: [PATCH] building llamaindex,nlp,audio --- .github/workflows/ci.yml | 6 +++--- audio/Dockerfile | 2 +- datascience/Dockerfile | 8 -------- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bf8b2d..f636eaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,9 @@ jobs: image_base_name: - minimal # - datascience - # - llamaindex - # - nlp - # - audio + - llamaindex + - nlp + - audio name: notebook-${{ matrix.image_base_name }} runs-on: ubuntu-latest diff --git a/audio/Dockerfile b/audio/Dockerfile index 3346a02..2cde503 100644 --- a/audio/Dockerfile +++ b/audio/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_IMAGE_TAG=latest -FROM b08x/notebook-datascience:$BASE_IMAGE_TAG +FROM b08x/notebook-minimal:$BASE_IMAGE_TAG LABEL maintainer="Robert Pannick " diff --git a/datascience/Dockerfile b/datascience/Dockerfile index f1f4f77..862fa3f 100644 --- a/datascience/Dockerfile +++ b/datascience/Dockerfile @@ -5,14 +5,6 @@ LABEL maintainer="Robert Pannick " USER root -# Pre-requisites -RUN echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal main' >> /etc/apt/sources.list && \ - echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' >> /etc/apt/sources.list && \ - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|apt-key add - && \ - apt-get update -qq && \ - apt-get autoremove -y && \ - rm -rf /var/lib/apt/lists/* - # Apache Arrow # ENV APACHE_ARROW_VERSION=10.0.0