FROM alpine:3.7 MAINTAINER Julian Ospald ENV GOPATH /gopath ENV PATH $PATH:$GOROOT/bin:$GOPATH/bin WORKDIR /gopath/src/code.gitea.io/gitea RUN apk --no-cache add \ bash \ ca-certificates \ curl \ gettext \ git \ linux-pam \ openssh \ redis \ shadow \ socat \ sqlite \ sudo \ su-exec \ supervisor \ tzdata \ && \ apk --no-cache add --virtual build-deps \ build-base \ linux-pam-dev \ go \ && \ git clone --depth=1 https://github.com/go-gitea/gitea.git \ /gopath/src/code.gitea.io/gitea && \ TAGS="bindata sqlite pam" make generate build && \ apk del build-deps && \ mkdir /app/ && \ mv /gopath/src/code.gitea.io/gitea /app/gitea && \ rm -rf "$GOPATH" /var/cache/apk/* RUN addgroup -S git RUN adduser -G git -H -D -g 'Gogs Git User' git -h /data/git -s /bin/bash && \ usermod -p '*' git && passwd -u git ENV USER git WORKDIR /app/gitea/ # SSH login fix, otherwise user is kicked off after login RUN echo "export VISIBLE=now" >> /etc/profile && \ echo "PermitUserEnvironment yes" >> /etc/ssh/sshd_config # Setup ssh COPY config/sshd_config /etc/ssh/sshd_config # Prepare data ENV GITEA_CUSTOM /data/gitea RUN echo "export GOGS_CUSTOM=/data/gitea" >> /etc/profile RUN chown -R redis /var/log/redis RUN sed -i -e 's/daemonize yes/daemonize no/' /etc/redis.conf COPY setup.sh /setup.sh RUN chmod +x /setup.sh COPY config/supervisord.conf /etc/supervisord.conf EXPOSE 3000 CMD /setup.sh && exec /usr/bin/supervisord -n -c /etc/supervisord.conf