Merge pull request #65 from jzelinskie/fixdockerfile

dockerfile: syntax updates and s/xz/xz-utils
This commit is contained in:
Quentin Machu 2016-01-19 13:38:25 -05:00
commit e650eab638

View File

@ -1,7 +1,11 @@
FROM golang:1.5 FROM golang:1.5
MAINTAINER Quentin Machu <quentin.machu@coreos.com> MAINTAINER Quentin Machu <quentin.machu@coreos.com>
RUN apt-get update && apt-get install -y bzr rpm xz && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* RUN apt-get update && \
apt-get install -y bzr rpm xz-utils && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN mkdir /db RUN mkdir /db
VOLUME /db VOLUME /db