Spaces:
Runtime error
Runtime error
updates
Browse files- Dockerfile +2 -13
Dockerfile
CHANGED
@@ -7,23 +7,12 @@ WORKDIR /app
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
-
# Install system dependencies
|
11 |
RUN apt-get update && \
|
12 |
-
apt-get install -y --no-install-recommends git
|
13 |
apt-get clean && \
|
14 |
rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
-
# Install a specific version of sqlite3 from source
|
17 |
-
RUN curl -O https://www.sqlite.org/2021/sqlite-autoconf-3350500.tar.gz && \
|
18 |
-
tar xvfz sqlite-autoconf-3350500.tar.gz && \
|
19 |
-
cd sqlite-autoconf-3350500 && \
|
20 |
-
./configure --prefix=/usr --disable-static --enable-fts5 && \
|
21 |
-
make && \
|
22 |
-
make install && \
|
23 |
-
cd .. && \
|
24 |
-
rm -rf sqlite-autoconf-3350500* && \
|
25 |
-
sqlite3 --version
|
26 |
-
|
27 |
# Install Python dependencies
|
28 |
RUN pip install poetry gradio
|
29 |
|
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
+
# Install system dependencies
|
11 |
RUN apt-get update && \
|
12 |
+
apt-get install -y --no-install-recommends git && \
|
13 |
apt-get clean && \
|
14 |
rm -rf /var/lib/apt/lists/*
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# Install Python dependencies
|
17 |
RUN pip install poetry gradio
|
18 |
|