This commit is contained in:
Logan Cusano
2025-07-13 19:03:13 -04:00
commit 7d3f08cae9
15 changed files with 591 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
IMAGE_NAME = twimg-frontend
CONTAINER_NAME = twimg-frontend
# Target to build the Docker image for sdr-node
build:
docker build -t $(IMAGE_NAME) .
# Target to run the sdr-node container
run: build
docker run --rm -it \
--name $(CONTAINER_NAME) \
-p 3000:3000 \
$(IMAGE_NAME)