feat: Support SQLite connection

This commit is contained in:
FangYin Cheng
2023-08-11 05:36:00 +08:00
parent 22658e36cf
commit 0859f36a89
10 changed files with 317 additions and 23 deletions

View File

@@ -3,7 +3,7 @@ ARG BASE_IMAGE="nvidia/cuda:11.8.0-devel-ubuntu22.04"
FROM ${BASE_IMAGE}
ARG BASE_IMAGE
RUN apt-get update && apt-get install -y git python3 pip wget \
RUN apt-get update && apt-get install -y git python3 pip wget sqlite3 \
&& apt-get clean
ARG BUILD_LOCAL_CODE="false"