Files
RestCOBOL/justfile
T
2026-06-11 09:52:57 +02:00

7 lines
131 B
Makefile

# Build the docker image
build:
docker build -t rest-cobol .
# Run the image
run: build
docker run -p 8080:8080 rest-cobol