4 lines
133 B
Bash
4 lines
133 B
Bash
# Script used to spin up a local webserver for development & testing
|
|
|
|
#!/bin/bash
|
|
podman run -it --rm -p 3000:80 $(podman build -q .) |