From 5aef0ad5c900f4bc953b4b9016c5c93b710b83f1 Mon Sep 17 00:00:00 2001 From: Jeffrey Forman Date: Fri, 31 Mar 2017 21:10:10 -0400 Subject: [PATCH] dont use sqlite database by default --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8aa57d8..d4f1ab7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,10 @@ FROM python:2.7 MAINTAINER Jeffrey Forman ENV DEBIAN_FRONTEND noninteractive -ENV NODB 1 + +# Uncomment the following line to not use a remote database, +# and to use a local Sqlite database file. +# ENV NODB 1 RUN apt-get update \ && rm -rf /var/lib/apt/lists/*