Andrchest commited on
Commit
582b1e1
·
1 Parent(s): a2c4967

final try 3

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -3
Dockerfile CHANGED
@@ -7,10 +7,20 @@ RUN addgroup --system app && adduser --system --ingroup app app
7
  WORKDIR /app
8
 
9
  # system deps for Qdrant and psycopg2, cleanup
 
 
10
  RUN apt-get update \
11
- && apt-get install -y --no-install-recommends build-essential wget ca-certificates \
12
- && apt-get clean \
13
- && rm -rf /var/lib/apt/lists/*
 
 
 
 
 
 
 
 
14
 
15
  # copy and install Python reqs
16
  COPY app/requirements.txt /app/requirements.txt
 
7
  WORKDIR /app
8
 
9
  # system deps for Qdrant and psycopg2, cleanup
10
+ # … earlier lines unchanged …
11
+
12
  RUN apt-get update \
13
+ && apt-get install -y --no-install-recommends build-essential wget ca-certificates \
14
+ && apt-get install -y --no-install-recommends \
15
+ build-essential \
16
+ wget \
17
+ ca-certificates \
18
+ libpq-dev \
19
+ && apt-get clean \
20
+ && rm -rf /var/lib/apt/lists/*
21
+
22
+ # … rest of file unchanged …
23
+
24
 
25
  # copy and install Python reqs
26
  COPY app/requirements.txt /app/requirements.txt