mirror of
https://github.com/imjasonh/krust
synced 2026-07-15 18:05:59 +00:00
chore: Add alpine-base example for multi-platform testing
- Add example/alpine-base project that uses Alpine Linux as base image - Update CI extended-platforms job to use the example directory - Simplifies CI configuration by moving test project to examples 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
725b43f0e2
commit
532198dd5a
3 changed files with 11 additions and 18 deletions
7
example/alpine-base/Cargo.toml
Normal file
7
example/alpine-base/Cargo.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "test-alpine"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[package.metadata.krust]
|
||||
base-image = "alpine:latest"
|
||||
3
example/alpine-base/src/main.rs
Normal file
3
example/alpine-base/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello from Alpine multi-platform test!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue