8 lines
131 B
Makefile
8 lines
131 B
Makefile
SHELL := /bin/bash
|
|
|
|
build:
|
|
docker build --platform linux/amd64 -t games .
|
|
|
|
start:
|
|
sudo docker run -p $(PORT):3000 -t games games
|