Browse Source

ubuntu 16.04 has old sqlite

Maurits van der Schee 4 years ago
parent
commit
c245e1f15a
2 changed files with 2 additions and 3 deletions
  1. 1
    1
      README.md
  2. 1
    2
      docker/ubuntu16/Dockerfile

+ 1
- 1
README.md View File

@@ -31,7 +31,7 @@ There are also proof-of-concept ports of this script that only support basic RES
31 31
   - MySQL 5.6 / MariaDB 10.0 or higher for spatial features in MySQL
32 32
   - PostGIS 2.0 or higher for spatial features in PostgreSQL 9.1 or higher
33 33
   - SQL Server 2012 or higher (2017 for Linux support)
34
-  - SQLite 3 or higher (has no geospatial support)
34
+  - SQLite 3.16 or higher (has no geospatial support)
35 35
 
36 36
 ## Installation
37 37
 

+ 1
- 2
docker/ubuntu16/Dockerfile View File

@@ -2,13 +2,12 @@ FROM ubuntu:16.04
2 2
 
3 3
 ARG DEBIAN_FRONTEND=noninteractive
4 4
 
5
-# install: php / mysql / postgres / sqlite / tools / mssql deps
5
+# install: php / mysql / postgres / tools / mssql deps
6 6
 RUN apt-get update && apt-get -y install \
7 7
 php-cli php-xml \
8 8
 mariadb-server mariadb-client php-mysql \
9 9
 postgresql php-pgsql \
10 10
 postgresql-9.5-postgis-2.2 \
11
-sqlite3 php-sqlite3 \
12 11
 git wget \
13 12
 curl apt-transport-https debconf-utils sudo
14 13
 

Loading…
Cancel
Save