2017-05-05 06:17:20 +05:30
|
|
|
FROM multiarch/alpine:armhf-v3.5
|
2016-11-28 18:43:18 +05:30
|
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
2015-11-22 20:44:08 +05:30
|
|
|
|
2016-11-28 18:43:18 +05:30
|
|
|
EXPOSE 22 3000
|
2015-11-22 20:44:08 +05:30
|
|
|
|
2017-05-08 16:39:20 +05:30
|
|
|
RUN apk --no-cache add \
|
2016-11-28 21:46:13 +05:30
|
|
|
su-exec \
|
2016-11-28 18:43:18 +05:30
|
|
|
ca-certificates \
|
|
|
|
sqlite \
|
|
|
|
bash \
|
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
s6 \
|
|
|
|
curl \
|
|
|
|
openssh \
|
2017-04-28 17:25:19 +05:30
|
|
|
tzdata
|
2017-06-13 07:37:11 +05:30
|
|
|
RUN addgroup \
|
2016-11-28 22:07:31 +05:30
|
|
|
-S -g 1000 \
|
2016-11-28 18:43:18 +05:30
|
|
|
git && \
|
2016-11-28 21:52:22 +05:30
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 18:43:18 +05:30
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 21:52:22 +05:30
|
|
|
-G git \
|
2017-01-01 07:55:17 +05:30
|
|
|
git && \
|
2017-08-13 11:48:05 +05:30
|
|
|
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
|
2015-11-22 20:44:08 +05:30
|
|
|
|
2016-11-28 18:43:18 +05:30
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
|
|
|
ENV GODEBUG=netdns=go
|
2016-01-25 18:37:37 +05:30
|
|
|
|
2015-11-22 20:44:08 +05:30
|
|
|
VOLUME ["/data"]
|
2016-11-28 18:43:18 +05:30
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
|
|
|
COPY docker /
|
2016-12-01 16:23:26 +05:30
|
|
|
COPY gitea /app/gitea/gitea
|