1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

some modify, I need to move my workenv to foreign county, network in china is so slow.

This commit is contained in:
codeskyblue
2015-08-17 14:32:11 +08:00
parent 6712aa21fa
commit 54b8172a24
28 changed files with 120 additions and 375 deletions

View File

@@ -1,17 +0,0 @@
FROM google/golang:latest
ENV TAGS="sqlite redis memcache cert" USER="git" HOME="/home/git"
COPY . /gopath/src/github.com/gogits/gogs/
WORKDIR /gopath/src/github.com/gogits/gogs/
RUN go get -v -tags="$TAGS" github.com/gogits/gogs \
&& go build -tags="$TAGS" \
&& useradd -d $HOME -m $USER \
&& chown -R $USER .
USER $USER
ENTRYPOINT [ "./gogs" ]
CMD [ "web" ]