forked from Maurice/pastabble
7 lines
292 B
Bash
Executable File
7 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
cargo build --target x86_64-unknown-linux-musl --release
|
|
podman build -t pastabble:latest .
|
|
podman save --format oci-archive -o pastabble.tar pastabble
|
|
|
|
# load with podman load -i pastabble.tar
|
|
# run with podman run -p 8080:8080 --name pastabble-c -v pastabble-v:/data -it pastabble |