2014-08-29 21:50:15 +05:30
|
|
|
FROM ubuntu:14.04
|
|
|
|
|
2014-09-03 20:42:38 +05:30
|
|
|
# This part is derived from the official docker image ------------------
|
2014-08-29 21:50:15 +05:30
|
|
|
|
2014-09-03 20:42:38 +05:30
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
|
|
|
|
apt-get install -qy \
|
2014-08-29 21:50:15 +05:30
|
|
|
build-essential ca-certificates curl \
|
|
|
|
bzr git mercurial \
|
|
|
|
--no-install-recommends
|
|
|
|
|
|
|
|
ENV GOLANG_VERSION 1.3
|
|
|
|
|
|
|
|
RUN curl -sSL http://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
|
|
|
|
| tar -v -C /usr/src -xz
|
|
|
|
WORKDIR /usr/src/go
|
|
|
|
|
|
|
|
RUN cd src && ./make.bash --no-clean 2>&1
|
|
|
|
|
|
|
|
ENV PATH /usr/src/go/bin:$PATH
|
|
|
|
|
|
|
|
RUN mkdir -p /go/src
|
|
|
|
ENV GOPATH /go
|
|
|
|
ENV PATH /go/bin:$PATH
|
|
|
|
WORKDIR /go
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
RUN useradd -m git
|
|
|
|
|
|
|
|
ENV GOGS_PATH $GOPATH/src/github.com/gogits/gogs
|
|
|
|
ENV GOGS_CUSTOM_CONF_PATH $GOGS_PATH/custom/conf
|
|
|
|
ENV GOGS_CUSTOM_CONF $GOGS_CUSTOM_CONF_PATH/app.ini
|
|
|
|
|
2014-09-03 22:11:20 +05:30
|
|
|
RUN git clone -b dev https://github.com/gogits/gogs.git $GOGS_PATH
|
2014-08-29 21:50:15 +05:30
|
|
|
# WORKDIR $GOGS_PATH
|
|
|
|
WORKDIR /go/src/github.com/gogits/gogs
|
2014-09-03 20:42:38 +05:30
|
|
|
RUN go get -d && go build
|
2014-08-29 21:50:15 +05:30
|
|
|
RUN chown -R git $GOGS_PATH
|
|
|
|
|
|
|
|
ADD init_gogs.sh /tmp/
|
|
|
|
RUN chown git /tmp/init_gogs.sh
|
|
|
|
RUN chmod +x /tmp/init_gogs.sh
|
|
|
|
|
|
|
|
USER git
|
|
|
|
ENV HOME /home/git
|
|
|
|
ENV USER git
|
|
|
|
ENV PATH $GOGS_PATH:$PATH
|
|
|
|
|
|
|
|
RUN git config --global user.name "GoGS"
|
|
|
|
|
|
|
|
ENTRYPOINT ["/tmp/init_gogs.sh"]
|
|
|
|
CMD ["gogs", "web"]
|