5 lines
163 B
Bash
Executable file
5 lines
163 B
Bash
Executable file
#!/bin/sh
|
|
|
|
podman rm -f dev
|
|
podman build --build-arg SSH_KEY="$(cat ~/.ssh/id_ed25519.pub)" -t debian-dev-env .
|
|
podman run -d --name dev -p 2222:22 debian-dev-env
|