File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ ENV PYTHONPATH=/app
14
14
# Install system dependencies required for OpenCV
15
15
RUN apt-get update && apt-get install -y --no-install-recommends \
16
16
libgl1-mesa-glx=22.3.6-1+deb12u1 \
17
- libglib2.0-0=2.74.6-2+deb12u6
17
+ libglib2.0-0=2.74.6-2+deb12u6 \
18
+ && rm -rf /var/lib/apt/lists/* \
19
+ && apt-get clean
18
20
19
21
# Install dependencies
20
22
RUN --mount=type=cache,target=/root/.cache/uv \
@@ -78,7 +80,10 @@ RUN npm run build
78
80
FROM backend-base AS geti-tune
79
81
80
82
# Install nginx
81
- RUN apt-get install -y nginx=1.22.1-9+deb12u2
83
+ RUN apt-get update && apt-get install -y --no-install-recommends \
84
+ nginx=1.22.1-9+deb12u2 \
85
+ && rm -rf /var/lib/apt/lists/* \
86
+ && apt-get clean
82
87
83
88
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
84
89
COPY --from=web_ui /home/app/web_ui/dist/ /usr/share/nginx/html
You can’t perform that action at this time.
0 commit comments