Compare commits

...

2 Commits

Author SHA1 Message Date
rkuo-danswer
46e26da88c fix apt versioning issues (#4151)
Co-authored-by: Richard Kuo (Danswer) <rkuo@onyx.app>
2025-02-27 12:05:37 -08:00
pablonyx
cf288a1b51 k (#3999) 2025-02-14 03:17:34 +00:00
2 changed files with 9 additions and 7 deletions

View File

@@ -28,14 +28,16 @@ RUN apt-get update && \
curl \
zip \
ca-certificates \
libgnutls30=3.7.9-2+deb12u3 \
libblkid1=2.38.1-5+deb12u1 \
libmount1=2.38.1-5+deb12u1 \
libsmartcols1=2.38.1-5+deb12u1 \
libuuid1=2.38.1-5+deb12u1 \
libgnutls30 \
libblkid1 \
libmount1 \
libsmartcols1 \
libuuid1 \
libxmlsec1-dev \
pkg-config \
gcc && \
gcc \
nano \
vim && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean

View File

@@ -95,7 +95,7 @@ export const MemoizedAnchor = memo(
}
return (
<MemoizedLink updatePresentingDocument={updatePresentingDocument}>
{children}l
{children}
</MemoizedLink>
);
}