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