7 lines
131 B
Makefile
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
|