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