Updating docker dev workflow

* Moving to new docker compose file format
* Adding some things that will be needed for python dependencies
This commit is contained in:
Matthew Jones
2016-06-08 12:25:14 -04:00
parent d29889a4bc
commit 20fe9e9614
3 changed files with 49 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
FROM ubuntu:16.04
RUN PACKAGES="\
rsync \
lsyncd \
" && \
apt-get update && \
apt-get install -y $PACKAGES && \
apt-get autoremove --purge -y && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*