mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
a120d3e1ea
* 'master' of github.com:jessfraz/dockerfiles: Updated powershell to 6.0.0-alpha.17 Updated atom to 1.15.0 (#246) Replaced deprecated MAINTAINER with LABEL (#242) Wireshark: Add CAP_NET_RAW and CAP_NET_ADMIN to /usr/bin/dumpcap (#244)
26 lines
622 B
Docker
26 lines
622 B
Docker
FROM debian:sid
|
|
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 1.9.2
|
|
|
|
ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb
|
|
|
|
# install vagrant and the libvirt plugin
|
|
RUN dpkg -i /src/vagrant_${VAGRANT_VERSION}_x86_64.deb \
|
|
&& vagrant plugin install vagrant-libvirt
|
|
|
|
ENTRYPOINT [ "vagrant" ]
|