You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
746 B
47 lines
746 B
FROM hypriot/rpi-alpine-scratch:edge
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
|
|
|
EXPOSE 22 3000
|
|
|
|
RUN apk update && \
|
|
apk add \
|
|
su-exec \
|
|
shadow \
|
|
ca-certificates \
|
|
sqlite \
|
|
bash \
|
|
git \
|
|
linux-pam \
|
|
s6 \
|
|
curl \
|
|
openssh \
|
|
tzdata && \
|
|
rm -rf \
|
|
/var/cache/apk/* && \
|
|
groupadd \
|
|
-r \
|
|
-g 1000 \
|
|
git && \
|
|
useradd \
|
|
-r -M \
|
|
-p '*' \
|
|
-d /data/git \
|
|
-s /bin/bash \
|
|
-u 1000 \
|
|
-g git \
|
|
git
|
|
|
|
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 public /app/gitea/public
|
|
COPY templates /app/gitea/templates
|
|
COPY bin/gitea /app/gitea/gitea
|
|
|