Skip to content

Commit

Permalink
Upgrade build enviroment from stretch to buster
Browse files Browse the repository at this point in the history
  • Loading branch information
guysoft committed Jun 26, 2019
1 parent e9d972e commit a2bff88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:buster

MAINTAINER Guy Sheffer <guysoft at gmail dot com>

Expand All @@ -8,7 +8,6 @@ RUN set -x \
curl \
git \
wget \
realpath \
p7zip-full \
python3 \
binfmt-support \
Expand Down
2 changes: 1 addition & 1 deletion src/dist_generators/dist_example/src/vagrant/Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
vagrant_root = File.dirname(__FILE__)
Vagrant.configure("2") do |o|
o.vm.box = "debian/stretch64"
o.vm.box = "debian/buster64"
o.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
o.vm.synced_folder File.read("../custompios_path").gsub("\n",""), "/CustomPiOS", create:true, type: "nfs"
o.vm.synced_folder "../", "/distro", create:true, type: "nfs"
Expand Down
2 changes: 1 addition & 1 deletion src/dist_generators/dist_example/src/vagrant/setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
sudo apt-get update
sudo apt-get install -y gawk util-linux realpath git qemu-user-static p7zip-full unzip zip
sudo apt-get install -y gawk util-linux git qemu-user-static p7zip-full unzip zip

0 comments on commit a2bff88

Please sign in to comment.