2017-05-05 02:47:20 +02:00
|
|
|
FROM multiarch/alpine:armhf-v3.5
|
2016-11-28 14:13:18 +01:00
|
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
2015-11-22 16:14:08 +01:00
|
|
|
|
2016-11-28 14:13:18 +01:00
|
|
|
EXPOSE 22 3000
|
2015-11-22 16:14:08 +01:00
|
|
|
|
2017-04-28 13:55:19 +02:00
|
|
|
RUN apk -U --no-cache add \
|
2016-11-28 17:16:13 +01:00
|
|
|
su-exec \
|
2016-11-28 14:13:18 +01:00
|
|
|
ca-certificates \
|
|
|
|
sqlite \
|
|
|
|
bash \
|
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
s6 \
|
|
|
|
curl \
|
|
|
|
openssh \
|
2017-04-28 13:55:19 +02:00
|
|
|
tzdata
|
|
|
|
RUN addgroup
|
2016-11-28 17:37:31 +01:00
|
|
|
-S -g 1000 \
|
2016-11-28 14:13:18 +01:00
|
|
|
git && \
|
2016-11-28 17:22:22 +01:00
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 14:13:18 +01:00
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 17:22:22 +01:00
|
|
|
-G git \
|
2017-01-01 03:25:17 +01:00
|
|
|
git && \
|
|
|
|
echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd
|
2015-11-22 16:14:08 +01:00
|
|
|
|
2016-11-28 14:13:18 +01:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
|
|
|
ENV GODEBUG=netdns=go
|
2016-01-25 14:07:37 +01:00
|
|
|
|
2015-11-22 16:14:08 +01:00
|
|
|
VOLUME ["/data"]
|
2016-11-28 14:13:18 +01:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
|
|
|
COPY docker /
|
2016-12-01 11:53:26 +01:00
|
|
|
COPY gitea /app/gitea/gitea
|