Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
FROM ghcr.io/hkuds/lightrag:latest
|
| 2 |
|
| 3 |
USER root
|
| 4 |
-
RUN apt-get update && apt-get install -y curl ca-certificates zstd
|
|
|
|
| 5 |
&& curl -fsSL https://ollama.com/install.sh | sh
|
| 6 |
-
|
| 7 |
WORKDIR /app
|
| 8 |
-
COPY .env /app/.env
|
| 9 |
COPY start.sh /app/start.sh
|
| 10 |
RUN chmod +x /app/start.sh
|
| 11 |
|
|
|
|
| 1 |
FROM ghcr.io/hkuds/lightrag:latest
|
| 2 |
|
| 3 |
USER root
|
| 4 |
+
RUN apt-get update && apt-get install -y curl ca-certificates zstd \
|
| 5 |
+
&& rm -rf /var/lib/apt/lists/* \
|
| 6 |
&& curl -fsSL https://ollama.com/install.sh | sh
|
| 7 |
+
|
| 8 |
WORKDIR /app
|
|
|
|
| 9 |
COPY start.sh /app/start.sh
|
| 10 |
RUN chmod +x /app/start.sh
|
| 11 |
|