gitea/Dockerfile

41 lines
667 B
Docker
Raw Normal View History

2017-12-10 03:50:50 +01:00
FROM alpine:3.7
LABEL maintainer="The Gitea Authors"
2015-08-25 06:41:01 +02:00
EXPOSE 22 3000
2015-08-25 06:41:01 +02:00
RUN apk --no-cache add \
su-exec \
ca-certificates \
sqlite \
bash \
git \
linux-pam \
s6 \
curl \
openssh \
gettext \
tzdata
RUN addgroup \
-S -g 1000 \
git && \
adduser \
-S -H -D \
-h /data/git \
-s /bin/bash \
-u 1000 \
-G git \
git && \
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
2015-08-17 09:10:23 +02:00
ENV USER git
ENV GITEA_CUSTOM /data/gitea
ENV GODEBUG=netdns=go
VOLUME ["/data"]
ENTRYPOINT ["/usr/bin/entrypoint"]
CMD ["/bin/s6-svscan", "/etc/s6"]
COPY docker /
COPY gitea /app/gitea/gitea