2017-05-04 20:47:20 -04:00
|
|
|
FROM alpine:3.5
|
2016-11-28 08:13:18 -05:00
|
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
2015-08-25 00:41:01 -04:00
|
|
|
|
2016-11-28 08:13:18 -05:00
|
|
|
EXPOSE 22 3000
|
2015-08-25 00:41:01 -04: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-06-30 02:10:37 -04:00
|
|
|
tzdata
|
|
|
|
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-15 04:16:55 -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-08-17 03:10:23 -04:00
|
|
|
|
2017-06-30 02:10:37 -04:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
|
|
|
ENV GODEBUG=netdns=go
|
2016-01-25 08:07:37 -05:00
|
|
|
|
2015-10-02 05:56:36 -04: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
|