From 9cf520f3dd06729c1b0248574858bdd21e36dc7a Mon Sep 17 00:00:00 2001
From: Alexandru Gherghescu <gherghescu_alex1@yahoo.ro>
Date: Mon, 2 Oct 2023 18:42:57 +0300
Subject: [PATCH] [fix] Add the tokenizer inside the Dockerfile recipe

---
 Dockerfile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Dockerfile b/Dockerfile
index 09618cb..3c6ed60 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,6 +23,9 @@ RUN pip install fairscale sentencepiece fire && \
 # add the llama repo
 RUN git clone https://github.com/facebookresearch/llama /llama
 
+# add the tokenizer
+ADD tokenizer.model /llama/tokenizer.model
+
 # add the weights
 ADD llama-2-7b-chat/ /llama/llama-2-7b-chat/
 
-- 
GitLab