summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorcodeskyblue <codeskyblue@gmail.com>2015-08-17 09:12:47 -0400
committercodeskyblue <codeskyblue@gmail.com>2015-08-17 09:12:47 -0400
commit4095ef2820c9f544229ad77fcb13a06bf3160063 (patch)
tree77943892c6d598885cf36dc295bf0c8c283d37b4 /Dockerfile
parent398bb772d84bca725f97bf37e866f71fd38f5c79 (diff)
downloadgitea-4095ef2820c9f544229ad77fcb13a06bf3160063.tar.gz
gitea-4095ef2820c9f544229ad77fcb13a06bf3160063.zip
add pam for docker
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index a6d23cfc87..baba8f19d3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,14 +3,14 @@ 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 openssh-server rsync
+RUN apt-get install -y openssh-server rsync libpam-dev
# 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"
+RUN go get -v -tags "sqlite redis memcache cert pam"
+RUN go build -tags "sqlite redis memcache cert pam"
RUN useradd --shell /bin/bash --system --comment gogits git