Echo-ai commited on
Commit
e8e5027
·
verified ·
1 Parent(s): f0b976d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]