Moving local development server files to their own folder

This commit is contained in:
Jason Williams
2025-01-03 14:13:57 -07:00
parent 972ad27df2
commit 258f82720c
3 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +0,0 @@
# Script used to spin up a local webserver for development
#!/bin/bash
podman run -it --rm --init -p 3000:3000 $(podman build -q .)

View File

@@ -0,0 +1,6 @@
# Script used to spin up a local webserver for development
#!/bin/bash
CURR_DIR="$(pwd)"
cd ${PWD}/..
podman run -it --rm --init -p 3000:3000 $(podman build -q -f ./local-test/Dockerfile .)