innofacisteven commited on
Commit
a548a2d
·
verified ·
1 Parent(s): d460998

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 && rm -rf /var/lib/apt/lists/* \
 
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