mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
aa2b6dfc71
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
36 lines
860 B
Docker
36 lines
860 B
Docker
FROM debian:buster
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
libxslt-dev \
|
|
libxml2-dev \
|
|
libvirt-dev \
|
|
make \
|
|
pkg-config \
|
|
ruby-dev \
|
|
ruby-fog \
|
|
zlib1g-dev \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV VAGRANT_VERSION 2.0.4
|
|
|
|
# download the source
|
|
RUN buildDeps=' \
|
|
ca-certificates \
|
|
curl \
|
|
' \
|
|
&& set -x \
|
|
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& curl -sSL "https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb" -o /tmp/vagrant-amd64.deb \
|
|
&& dpkg -i /tmp/vagrant-amd64.deb \
|
|
&& rm -rf /tmp/*.deb \
|
|
&& apt-get purge -y --auto-remove $buildDeps
|
|
|
|
# install the libvirt plugin
|
|
RUN vagrant plugin install vagrant-libvirt
|
|
|
|
ENTRYPOINT [ "vagrant" ]
|