Files
twimg-frontend/Makefile
Logan Cusano 7d3f08cae9 init
2025-07-13 19:03:13 -04:00

13 lines
284 B
Makefile

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)