2017-05-05 06:17:20 +05:30
|
|
|
FROM alpine:3.5
|
2016-11-28 18:43:18 +05:30
|
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
2015-08-25 10:11:01 +05:30
|
|
|
|
2016-11-28 18:43:18 +05:30
|
|
|
EXPOSE 22 3000
|
2015-08-25 10:11:01 +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
|
|
|
|
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 \
|
2016-12-15 14:46:55 +05:30
|
|
|
git && \
|
|
|
|
echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd
|
2015-08-17 12:40:23 +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-10-02 15:26:36 +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
|