Files
drb-core-client/Makefile
2025-06-22 22:35:05 -04:00

17 lines
380 B
Makefile

# Define variables for client image name
CLIENT_IMAGE = websocket-client-app
# Default target: build the server image
all: build
# Target to build the server Docker image
build:
docker build -t $(CLIENT_IMAGE) .
# Target to run the server container using the host network
run: build
docker run -it --rm \
-v "$(shell pwd)/data":/data \
--network=host \
$(CLIENT_IMAGE)