first commit

This commit is contained in:
Mia von Steinkirch 2019-03-14 21:31:51 -10:00
commit f4a26dbadc
8 changed files with 457 additions and 0 deletions

15
node_server_example/Makefile Executable file
View file

@ -0,0 +1,15 @@
.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