ppsingh commited on
Commit
ae2e36e
·
verified ·
1 Parent(s): 1036cc2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,9 +1,14 @@
1
  FROM qdrant/qdrant:v1.15.3
2
 
 
 
 
 
 
 
3
  ENV QDRANT__STORAGE__STORAGE_PATH="/data/qdrant_data"
4
  ENV QDRANT__STORAGE__SNAPSHOTS_PATH="/data/qdrant_snapshots"
5
 
6
- # Startup script that recovers snapshots before launching Qdrant
7
  COPY entrypoint.sh /entrypoint.sh
8
  RUN chmod +x /entrypoint.sh
9
 
 
1
  FROM qdrant/qdrant:v1.15.3
2
 
3
+ USER root
4
+
5
+ RUN apt-get update && apt-get install -y --no-install-recommends \
6
+ wget \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
  ENV QDRANT__STORAGE__STORAGE_PATH="/data/qdrant_data"
10
  ENV QDRANT__STORAGE__SNAPSHOTS_PATH="/data/qdrant_snapshots"
11
 
 
12
  COPY entrypoint.sh /entrypoint.sh
13
  RUN chmod +x /entrypoint.sh
14