I tried installing the pipeline but during the docker build I encountered the following error.
=> ERROR [ 4/26] RUN apt-get update -y && apt-get -y install curl python3.12 python3.12-dev python3-pip python3-venv swi-prolog sfst unzip wget git 5.2s
------
> [ 4/26] RUN apt-get update -y && apt-get -y install curl python3.12 python3.12-dev python3-pip python3-venv swi-prolog sfst unzip wget git:
0.544 Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease
0.544 Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
0.576 Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease
0.593 Hit:4 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal InRelease
0.600 Hit:5 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64 InRelease
0.624 Hit:6 http://archive.ubuntu.com/ubuntu focal-backports InRelease
2.316 Reading package lists...
3.609 Reading package lists...
4.829 Building dependency tree...
5.069 Reading state information...
5.176 E: Unable to locate package python3.12-dev
5.176 E: Couldn't find any package by glob 'python3.12-dev'
5.176 E: Couldn't find any package by regex 'python3.12-dev'
------
Dockerfile:8
--------------------
7 |
8 | >>> RUN apt-get update -y && apt-get -y install \
9 | >>> curl \
10 | >>> python3.12 \
11 | >>> python3.12-dev \
12 | >>> python3-pip \
13 | >>> python3-venv \
14 | >>> swi-prolog \
15 | >>> sfst \
16 | >>> unzip \
17 | >>> wget \
18 | >>> git
19 |
--------------------
ERROR: failed to build: failed to solve: process "/bin/sh -c apt-get update -y && apt-get -y install curl python3.12 python3.12-dev python3-pip python3-venv swi-prolog sfst unzip wget git" did not complete successfully: exit code: 100
I tried installing the pipeline but during the docker build I encountered the following error.