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