mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2025-01-24 02:41:41 +00:00
Added Vagrantfile
This commit is contained in:
parent
943bb576a9
commit
161b98ef43
3
.gitignore
vendored
3
.gitignore
vendored
@ -35,3 +35,6 @@ windows/x64/**
|
|||||||
|
|
||||||
# Ctags
|
# Ctags
|
||||||
*.tags*
|
*.tags*
|
||||||
|
|
||||||
|
# Vagrant
|
||||||
|
.vagrant/
|
||||||
|
16
Vagrantfile
vendored
Normal file
16
Vagrantfile
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Vagrant.configure(2) do |config|
|
||||||
|
config.vm.box = "ubuntu/xenial64"
|
||||||
|
|
||||||
|
# Uncomment this line if you want to sync other folders
|
||||||
|
# config.vm.synced_folder "/home/user/video", "/video"
|
||||||
|
|
||||||
|
config.vm.provision "shell", inline: <<-SHELL
|
||||||
|
sudo apt-get install -y gcc
|
||||||
|
sudo apt-get install -y libcurl4-gnutls-dev
|
||||||
|
sudo apt-get install -y tesseract-ocr
|
||||||
|
sudo apt-get install -y tesseract-ocr-dev
|
||||||
|
sudo apt-get install -y libleptonica-dev
|
||||||
|
SHELL
|
||||||
|
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user