dont use sqlite database by default

This commit is contained in:
Jeffrey Forman 2017-03-31 21:10:10 -04:00
parent f2c36ea863
commit 5aef0ad5c9
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@ FROM python:2.7
MAINTAINER Jeffrey Forman <code@jeffreyforman.net>
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/*