Spaces:
Runtime error
Runtime error
ajeetsraina
commited on
Commit
•
f3ceba5
1
Parent(s):
26faa32
Added
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
# Specify a base image that contains the necessary dependencies for running Hugging Face LLMs.
|
2 |
-
|
|
|
|
|
|
|
3 |
|
4 |
# Copy your Hugging Face LLM files into the container.
|
5 |
COPY . /app
|
|
|
1 |
# Specify a base image that contains the necessary dependencies for running Hugging Face LLMs.
|
2 |
+
|
3 |
+
FROM python:3.9
|
4 |
+
|
5 |
+
RUN pip install transformers
|
6 |
|
7 |
# Copy your Hugging Face LLM files into the container.
|
8 |
COPY . /app
|