Sign inSign up

vdm13/sqlite3

By vdm13

•Updated about 9 years ago

Image
1

1.5K

vdm13/sqlite3 repository overview

⁠Sqlite3 Docker Container

⁠Dockerfile

⁠Alpine as Base image (which is lightweight)

FROM alpine:latest

⁠Downloading latest sqlite source code

RUN wget http://www.sqlite.org/2017/sqlite-autoconf-3170000.tar.gz

⁠Unzip tar file

RUN tar xvfz sqlite-autoconf-3170000.tar.gz

⁠Install alpine sdk as a prerequisite for sqlite installation

RUN apk add --update alpine-sdk

⁠Some configuration and installation

RUN ./sqlite-autoconf-3170000/configure --prefix=/usr

RUN make

RUN make install

RUN rm sqlite-autoconf-3170000.tar.gz

⁠Installation / Running

docker pull vdm13/sqlite3

docker run -d -it vdm13/sqlite3 /bin/sh

Tag summary

Content type

Image

Digest

Size

88.2 MB

Last updated

about 9 years ago

docker pull vdm13/sqlite3