Skip to content

Commit cda4d3c

Browse files
committed
fix: restore supervisor config via BuildKit mount
1 parent a023a3b commit cda4d3c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docker/3.10-slim-bullseye-pgvector.Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ RUN --mount=type=bind,source=fs,target=/mnt apt-get update && apt-get install -y
77
libnss3-dev libssl-dev libreadline-dev libffi-dev \
88
libsqlite3-dev libbz2-dev \
99
supervisor \
10-
&& rm -rf /var/lib/apt/lists/*
10+
cp -Rv /mnt/* / && \
11+
apt-get clean autoclean && \
12+
apt-get autoremove --yes && \
13+
rm -rf /var/lib/apt/lists/*
1114

1215
# Install Python 3.10 from source
1316
RUN curl -O https://www.python.org/ftp/python/3.10.13/Python-3.10.13.tgz && \

0 commit comments

Comments
 (0)