Merge pull request #110 from n3r0-ch/master
Docker and Vagrant Fix pyconfig.h: No such file or directory
This commit is contained in:
commit
98e8cb14bc
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ ENV HOME /root
|
|||
RUN apt-get update -y
|
||||
|
||||
#Install ZeroNet deps
|
||||
RUN apt-get install msgpack-python python-gevent python-pip -y
|
||||
RUN apt-get install msgpack-python python-gevent python-pip python-dev -y
|
||||
RUN pip install msgpack-python --upgrade
|
||||
|
||||
#Add Zeronet source
|
||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -38,7 +38,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
|
||||
#Install deps
|
||||
config.vm.provision "shell",
|
||||
inline: "sudo apt-get install msgpack-python python-gevent python-pip -y"
|
||||
inline: "sudo apt-get install msgpack-python python-gevent python-pip python-dev -y"
|
||||
config.vm.provision "shell",
|
||||
inline: "sudo pip install msgpack-python --upgrade"
|
||||
|
||||
|
|
Loading…
Reference in a new issue