-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathContainerfile-instructlab-cpu
45 lines (29 loc) · 1.25 KB
/
Containerfile-instructlab-cpu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088 AS base
# create a user, specific UID/GID is not necessisarily important, but designed to run as any `--user`
RUN set -eux; \
groupadd -r ilab --gid=1000; \
useradd -r -g ilab --uid=1000 --home-dir=/instructlab --shell=/bin/bash ilab; \
install --verbose --directory --owner ilab --group ilab --mode 1777 /instructlab
ARG IL_VERSION=v0.21.2
WORKDIR /instructlab
RUN set -eux; \
dnf -y update; \
dnf install -y --setopt=install_weak_deps=False \
git \
python3.11-devel \
python3.11-pip \
make automake gcc gcc-c++;
RUN dnf clean all;
RUN alias python3='/usr/bin/python3.11'
# RUN pip3.11 install torch
RUN set -eux; \
pip3.11 install --no-cache instructlab==${IL_VERSION};
USER ilab
RUN set -eux; \
ilab config init --non-interactive --model-path /instructlab/models/instructlab/granite-7b-lab --taxonomy-path /instructlab/share/taxonomy
# RUN ilab model download --repository instructlab/granite-7b-lab-GGUF --filename granite-7b-lab-Q4_K_M.gguf --model-dir /instructlab/models
ENV GIT_CONFIG_COUNT=1
ENV GIT_CONFIG_KEY_0=safe.directory
ENV GIT_CONFIG_VALUE_0=*
# COPY --from=build --link /target/ /
COPY instructlab-license /licenses/instructlab-license