10 lines
210 B
Makefile
10 lines
210 B
Makefile
.PHONY: all build push
|
|
|
|
all: build
|
|
|
|
build:
|
|
docker build -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:focs-ubuntu-latest .
|
|
|
|
push:
|
|
docker push focs.ji.sjtu.edu.cn:5000/gitea/runner-images:focs-ubuntu-latest
|