Spaces:
Runtime error
Runtime error
update docker
Browse files- Dockerfile +0 -5
Dockerfile
CHANGED
|
@@ -1,13 +1,8 @@
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
|
| 3 |
-
# System dependencies
|
| 4 |
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
| 5 |
-
|
| 6 |
-
# Ollama install
|
| 7 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
| 8 |
-
RUN ollama pull llama3
|
| 9 |
|
| 10 |
-
# App setup
|
| 11 |
WORKDIR /app
|
| 12 |
COPY app /app
|
| 13 |
COPY signals /app/signals
|
|
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
|
|
|
|
| 3 |
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
| 4 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
|
|
|
| 5 |
|
|
|
|
| 6 |
WORKDIR /app
|
| 7 |
COPY app /app
|
| 8 |
COPY signals /app/signals
|