Files
Atay-Makhzan/Dockerfile
T

40 lines
660 B
Docker
Raw Normal View History

FROM alpine:3.5
2016-11-28 14:13:18 +01:00
MAINTAINER Thomas Boerger <thomas@webhippie.de>
2015-08-25 12:41:01 +08:00
2016-11-28 14:13:18 +01:00
EXPOSE 22 3000
2015-08-25 12:41:01 +08:00
2017-05-08 13:09:20 +02:00
RUN apk --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-06-30 02:58:57 +02:00
tzdata \
&& addgroup \
-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 \
2016-12-15 10:16:55 +01:00
git && \
echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd
2015-08-17 03:10:23 -04:00
2017-06-30 02:58:57 +02:00
ENV USER git \
GITEA_CUSTOM /data/gitea \
GODEBUG=netdns=go
2015-10-02 10:56:36 +01:00
VOLUME ["/data"]
2016-11-28 14:13:18 +01:00
ENTRYPOINT ["/usr/bin/entrypoint"]
CMD ["/bin/s6-svscan", "/etc/s6"]
COPY docker /
COPY gitea /app/gitea/gitea