2017-05-05 03:47:20 +03:00
|
|
|
FROM alpine:3.5
|
2016-11-28 16:13:18 +03:00
|
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
2015-08-25 07:41:01 +03:00
|
|
|
|
2016-11-28 16:13:18 +03:00
|
|
|
EXPOSE 22 3000
|
2015-08-25 07:41:01 +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-06-30 03:58:57 +03:00
|
|
|
tzdata \
|
|
|
|
&& 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 \
|
2016-12-15 12:16:55 +03:00
|
|
|
git && \
|
|
|
|
echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd
|
2015-08-17 10:10:23 +03:00
|
|
|
|
2017-06-30 03:58:57 +03:00
|
|
|
ENV USER git \
|
|
|
|
GITEA_CUSTOM /data/gitea \
|
|
|
|
GODEBUG=netdns=go
|
2016-01-25 16:07:37 +03:00
|
|
|
|
2015-10-02 12:56:36 +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
|