Adding dev dependencies in the docker image
authorSawood Alam <ibnesayeed@gmail.com>
Mon, 12 Dec 2016 23:46:37 +0000 (18:46 -0500)
committerSawood Alam <ibnesayeed@gmail.com>
Mon, 12 Dec 2016 23:46:37 +0000 (18:46 -0500)
image/discourse_dev/Dockerfile

index 266713e25258314d4aa390d9be530f054e2efca1..d7b7da351b5efa4cb55efa12df179f5fcef47078 100644 (file)
@@ -4,6 +4,10 @@ FROM discourse/base:1.3.9
 
 MAINTAINER Sam Saffron "https://twitter.com/samsaffron"
 
+# Istall some development environment dependencies
+RUN apt-get update && apt-get install -y libsqlite3-dev \
+    && rm -rf /var/lib/apt/lists/*
+
 # Create discourse user and /var/www location for both
 # discourse and dev images.
 RUN useradd discourse -s /bin/bash -m -U &&\