Merge pull request #65 from jzelinskie/fixdockerfile
dockerfile: syntax updates and s/xz/xz-utils
This commit is contained in:
commit
e650eab638
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user