Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@ WORKDIR /app
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
|
| 11 |
-
RUN python -c "from transformers import AutoModelForCausalLM, AutoTokenizer; AutoModelForCausalLM.from_pretrained('
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|
|
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
|
| 11 |
+
RUN python -c "from transformers import AutoModelForCausalLM, AutoTokenizer; AutoModelForCausalLM.from_pretrained('Locutusque/TinyMistral-248M'); AutoTokenizer.from_pretrained('Locutusque/TinyMistral-248M')"
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|