mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 15:02:55 -04:00
15 lines
187 B
Makefile
Executable file
15 lines
187 B
Makefile
Executable file
.DELETE_ON_ERROR:
|
|
|
|
build:
|
|
docker build -t node_app_test .
|
|
|
|
run:
|
|
docker run -d -p 1337:1337 node_app_test
|
|
|
|
curl:
|
|
curl localhost:1337
|
|
|
|
status:
|
|
docker ps
|
|
|
|
.PHONY: build run curl status
|