1562e9ab70
1. Use `apk -U --no-cache add` instead of `apk update` + `apk add` + manually cache clean up. 2. Separate package installation and user, group setup, the combination to reduce a docker image layer didn't bring benefits here, only makes Dockerfiles more complex.
39 lines
675 B
Text
39 lines
675 B
Text
FROM hypriot/rpi-alpine-scratch:v3.4
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
|
|
|
EXPOSE 22 3000
|
|
|
|
RUN apk -U --no-cache add \
|
|
su-exec \
|
|
ca-certificates \
|
|
sqlite \
|
|
bash \
|
|
git \
|
|
linux-pam \
|
|
s6 \
|
|
curl \
|
|
openssh \
|
|
tzdata
|
|
RUN addgroup
|
|
-S -g 1000 \
|
|
git && \
|
|
adduser \
|
|
-S -H -D \
|
|
-h /data/git \
|
|
-s /bin/bash \
|
|
-u 1000 \
|
|
-G git \
|
|
git && \
|
|
echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd
|
|
|
|
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
|