Spaces:
Running
Running
Remove SQLite installation steps from Dockerfile
Browse files- Dockerfile +0 -8
Dockerfile
CHANGED
@@ -1,14 +1,6 @@
|
|
1 |
# Use the official Python 3.10.9 image
|
2 |
FROM python:3.10.9
|
3 |
|
4 |
-
RUN apt-get update && \
|
5 |
-
apt-get install -y sqlite3 libsqlite3-dev && \
|
6 |
-
apt-get clean && \
|
7 |
-
rm -rf /var/lib/apt/lists/*
|
8 |
-
|
9 |
-
# Verify SQLite3 installation
|
10 |
-
RUN sqlite3 --version
|
11 |
-
|
12 |
# Copy the current directory contents into the container at /app
|
13 |
COPY . .
|
14 |
|
|
|
1 |
# Use the official Python 3.10.9 image
|
2 |
FROM python:3.10.9
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# Copy the current directory contents into the container at /app
|
5 |
COPY . .
|
6 |
|