Skip to content

Commit 9fd9749

Browse files
committed
Fixed style checks
1 parent a64363d commit 9fd9749

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docker/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ ENV PYTHONPATH=/app
1414
# Install system dependencies required for OpenCV
1515
RUN apt-get update && apt-get install -y --no-install-recommends \
1616
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
1820

1921
# Install dependencies
2022
RUN --mount=type=cache,target=/root/.cache/uv \
@@ -78,7 +80,10 @@ RUN npm run build
7880
FROM backend-base AS geti-tune
7981

8082
# 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
8287

8388
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
8489
COPY --from=web_ui /home/app/web_ui/dist/ /usr/share/nginx/html

0 commit comments

Comments
 (0)