runner-images/Makefile
张泊明518370910136 e544dedd6e
All checks were successful
push / build (push) Successful in 51s
feat: build golang-ubuntu-latest image
2024-10-10 23:59:10 -04:00

13 lines
336 B
Makefile

.PHONY: all force-build build push
all: build
force-build:
docker build --no-cache -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest .
build:
docker build -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest .
push:
docker push focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest