We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 387da03 + 6e87368 commit 03071baCopy full SHA for 03071ba
1 file changed
lib/vanagon/platform/defaults/debian-13-armhf.rb
@@ -0,0 +1,24 @@
1
+platform "debian-13-armhf" do |plat|
2
+ plat.servicedir "/lib/systemd/system"
3
+ plat.defaultdir "/etc/default"
4
+ plat.servicetype "systemd"
5
+ plat.codename "trixie"
6
+
7
+ packages = %w(
8
+ build-essential
9
+ cmake
10
+ curl
11
+ debhelper
12
+ devscripts
13
+ fakeroot
14
+ make
15
+ pkg-config
16
+ quilt
17
+ rsync
18
+ systemd
19
+ )
20
+ plat.provision_with "export DEBIAN_FRONTEND=noninteractive && apt-get update -qq && apt-get install -qy --no-install-recommends #{packages.join(' ')}"
21
+ plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends "
22
+ plat.docker_image "debian:13"
23
+ plat.docker_arch "linux/arm/v7"
24
+end
0 commit comments