We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24859fe commit 0f5b399Copy full SHA for 0f5b399
Makefile
@@ -10,6 +10,7 @@ endif
10
BINDATA := modules/{options,public,templates}/bindata.go
11
STYLESHEETS := $(wildcard public/less/index.less public/less/_*.less)
12
JAVASCRIPTS :=
13
+DOCKER_TAG := gitea/gitea:latest
14
15
GOFLAGS := -i -v
16
EXTRA_GOFLAGS ?=
@@ -126,7 +127,7 @@ $(EXECUTABLE): $(SOURCES)
126
127
.PHONY: docker
128
docker:
129
docker run -ti --rm -v $(CURDIR):/srv/app/src/code.gitea.io/gitea -w /srv/app/src/code.gitea.io/gitea -e TAGS="bindata $(TAGS)" webhippie/golang:edge make clean generate build
- docker build -t gitea/gitea:latest .
130
+ docker build -t $(DOCKER_TAG) .
131
132
.PHONY: release
133
release: release-dirs release-windows release-linux release-darwin release-copy release-check
0 commit comments