(improvement)(project) Chroma supports storing and modifying Docker image paths. The Java backend service has been enhanced with a MySQL client and name modification. (#1303)

This commit is contained in:
lexluo09
2024-06-30 22:31:58 +08:00
committed by GitHub
parent b59c1303cc
commit 96339f425c
4 changed files with 12 additions and 4 deletions

View File

@@ -7,6 +7,11 @@ WORKDIR /usr/src/app
# Argument to pass in the supersonic version at build time
ARG SUPERSONIC_VERSION
# Install necessary packages, including MySQL client
RUN apt-get update && \
apt-get install -y default-mysql-client unzip && \
rm -rf /var/lib/apt/lists/*
# Install the vim editor.
RUN apt-get update && \
apt-get install -y vim && \