mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
86aa8e413a
I have restructured the docker build process entirely, the binary gets built outside of the docker build command, now we are managing all dependencies with real Alpine packages and I have dropped features like socat or the cron daemon. Signed-off-by: Thomas Boerger <tboerger@suse.de>
48 lines
834 B
Docker
48 lines
834 B
Docker
FROM hypriot/rpi-alpine-scratch:edge
|
|
MAINTAINER Thomas Boerger <thomas@webhippie.de>
|
|
|
|
EXPOSE 22 3000
|
|
|
|
RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
|
|
apk -U add \
|
|
gosu@testing \
|
|
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
|