Files
Atay-Makhzan/Dockerfile.rpi
T

45 lines
714 B
Docker
Raw Normal View History

2016-11-28 14:13:18 +01:00
FROM hypriot/rpi-alpine-scratch:edge
MAINTAINER Thomas Boerger <thomas@webhippie.de>
2015-11-22 17:14:08 +02:00
2016-11-28 14:13:18 +01:00
EXPOSE 22 3000
2015-11-22 17:14:08 +02:00
2016-11-28 17:16:13 +01:00
RUN apk update && \
apk add \
su-exec \
2016-11-28 14:13:18 +01:00
ca-certificates \
sqlite \
bash \
git \
linux-pam \
s6 \
curl \
openssh \
tzdata && \
rm -rf \
/var/cache/apk/* && \
2016-11-28 17:22:22 +01:00
addgroup \
2016-11-28 14:13:18 +01:00
-g 1000 \
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-11-28 14:13:18 +01:00
git
2015-11-22 17:14:08 +02:00
2016-11-28 14:13:18 +01:00
ENV USER git
ENV GITEA_CUSTOM /data/gitea
ENV GODEBUG=netdns=go
2015-11-22 17:14:08 +02:00
VOLUME ["/data"]
2016-11-28 14:13:18 +01:00
ENTRYPOINT ["/usr/bin/entrypoint"]
CMD ["/bin/s6-svscan", "/etc/s6"]
COPY docker /
COPY public /app/gitea/public
COPY templates /app/gitea/templates
COPY bin/gitea /app/gitea/gitea