blob: 0a1c7bfbdb6bdef85b1e9861de7bfd262f8ec7f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
image:
distribution: alpinelinux
description: Build image for lua4.win
architecture: x86
release: edge
source:
downloader: alpinelinux-http
same_as: 3.20
url: https://dl-cdn.alpinelinux.org/alpine
files:
- path: /etc/hostname
generator: hostname
- path: /etc/hosts
generator: hosts
- path: /etc/network/interfaces
generator: dump
content: |-
auth eth0
iface eth0 inet dhcp
hostname $(hostname)
packages:
manager: apk
update: true
cleanup: true
sets:
- packages:
- alpine-base
- clang18
- clang18-dev
action: install
actions:
- trigger: post-packages
action: |-
#!/bin/sh
set -eux
rm -f /var/cache/apk/*
mappings:
architecture_map:
|