2017-09-13 09:37:42 +03:00
|
|
|
FROM multiarch/alpine:armhf-v3.6
|
2017-10-05 11:41:10 +03:00
|
|
|
|
|
|
|
LABEL maintainer="The Gitea Authors"
|
2015-11-22 18:14:08 +03:00
|
|
|
|
2016-11-28 16:13:18 +03:00
|
|
|
EXPOSE 22 3000
|
2015-11-22 18:14:08 +03:00
|
|
|
|
2017-05-08 14:09:20 +03:00
|
|
|
RUN apk --no-cache add \
|
2016-11-28 19:16:13 +03:00
|
|
|
su-exec \
|
2016-11-28 16:13:18 +03:00
|
|
|
ca-certificates \
|
|
|
|
sqlite \
|
|
|
|
bash \
|
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
s6 \
|
|
|
|
curl \
|
|
|
|
openssh \
|
2017-10-31 11:55:46 +03:00
|
|
|
gettext \
|
2017-04-28 14:55:19 +03:00
|
|
|
tzdata
|
2017-06-13 05:07:11 +03:00
|
|
|
RUN addgroup \
|
2016-11-28 19:37:31 +03:00
|
|
|
-S -g 1000 \
|
2016-11-28 16:13:18 +03:00
|
|
|
git && \
|
2016-11-28 19:22:22 +03:00
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 16:13:18 +03:00
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 19:22:22 +03:00
|
|
|
-G git \
|
2017-01-01 05:25:17 +03:00
|
|
|
git && \
|
2017-08-13 09:18:05 +03:00
|
|
|
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
|
2015-11-22 18:14:08 +03:00
|
|
|
|
2016-11-28 16:13:18 +03:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
|
|
|
ENV GODEBUG=netdns=go
|
2016-01-25 16:07:37 +03:00
|
|
|
|
2015-11-22 18:14:08 +03:00
|
|
|
VOLUME ["/data"]
|
2016-11-28 16:13:18 +03:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
|
|
|
COPY docker /
|
2016-12-01 13:53:26 +03:00
|
|
|
COPY gitea /app/gitea/gitea
|