Remove redundant SQLite version verification from Dockerfile
Browse files- Dockerfile +0 -3
Dockerfile
CHANGED
@@ -9,9 +9,6 @@ RUN apt-get update && \
|
|
9 |
# Verify SQLite3 installation
|
10 |
RUN sqlite3 --version
|
11 |
|
12 |
-
# Verify SQLite version
|
13 |
-
RUN sqlite3 --version
|
14 |
-
|
15 |
# Copy the current directory contents into the container at /app
|
16 |
COPY . .
|
17 |
|
|
|
9 |
# Verify SQLite3 installation
|
10 |
RUN sqlite3 --version
|
11 |
|
|
|
|
|
|
|
12 |
# Copy the current directory contents into the container at /app
|
13 |
COPY . .
|
14 |
|