diff options
author | codeskyblue <codeskyblue@gmail.com> | 2015-08-17 15:17:18 +0800 |
---|---|---|
committer | codeskyblue <codeskyblue@gmail.com> | 2015-08-17 15:17:18 +0800 |
commit | 9371fbe71a10f9449c805a1fd27968397d4f7cdb (patch) | |
tree | 0beb50cabe251663a65ff95e7c9efc06a0280684 /Dockerfile | |
parent | feb3cfa067d1daff4d8e181d588137c151b60b96 (diff) | |
download | gitea-9371fbe71a10f9449c805a1fd27968397d4f7cdb.tar.gz gitea-9371fbe71a10f9449c805a1fd27968397d4f7cdb.zip |
add docker ssh support
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/Dockerfile b/Dockerfile index 012ceb25bc..a6d23cfc87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,29 +1,14 @@ -#FROM debian:wheezy-backports FROM google/golang:latest +MAINTAINER codeskyblue@gmail.com + RUN echo "deb http://ftp.debian.org/debian/ wheezy-backports main" >> /etc/apt/sources.list RUN apt-get update -#RUN apt-get install -y gcc libc6-dev make --no-install-recommends - -# install golang -#ENV GOLANG_VERSION 1.4.3 -#RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \ -# | tar -v -C /usr/src -xz -#RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1 -#ENV PATH /usr/src/go/bin:$PATH -#ENV GOPATH /gopath - -ENV TAGS="sqlite redis memcache" -COPY . /gopath/src/github.com/gogits/gogs/ - -#RUN apt-cache search openssh-server RUN apt-get install -y openssh-server rsync -##RUN echo "deb http://ftp.debian.org/debian/ wheezy-backports main" >> /etc/apt/sources.list \ -# && apt-get update \ -# && apt-get install -y -t wheezy-backports openssh-server rsync - # set the working directory and add current stuff +COPY . /gopath/src/github.com/gogits/gogs/ WORKDIR /gopath/src/github.com/gogits/gogs/ + RUN go get -v -tags "sqlite redis memcache cert" RUN go build -tags "sqlite redis memcache cert" |