Spaces:
Running
Running
Echo-ai
commited on
Create Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
RUN apt-get update && apt-get install -y curl
|
3 |
+
RUN curl -L https://ollama.com/install.sh | sh
|
4 |
+
COPY . /app
|
5 |
+
WORKDIR /app
|
6 |
+
CMD ["sh", "start.sh"]
|