dev-reorganization #3

Merged
jason merged 3 commits from dev-reorganization into master 2025-01-03 22:43:21 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 258f82720c - Show all commits

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 .)