43 lines
1.2 KiB
Docker
43 lines
1.2 KiB
Docker
FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768ba473078319a47f4
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y openssh-server git asciidoctor pandoc && \
|
|
rm -rf /etc/ssh_host_* && \
|
|
rm -r /var/cache/apt /var/lib/apt/lists
|
|
RUN pip3 install jupyter
|
|
|
|
ADD supervisor/ /etc/supervisor/conf.d/
|
|
|
|
RUN adduser --disabled-login --gecos 'Gitea' git
|
|
# by default, git account is created as inactive which prevents login via openssh
|
|
# https://github.com/gitlabhq/gitlabhq/issues/5304
|
|
RUN passwd -d git
|
|
|
|
RUN mkdir -p /home/git/gitea
|
|
WORKDIR /home/git
|
|
|
|
# for autosign feature
|
|
ENV GNUPGHOME="/app/data/gnupg"
|
|
|
|
ARG VERSION=1.21.0
|
|
|
|
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
|
&& chmod +x /home/git/gitea/gitea
|
|
|
|
# setup config paths
|
|
ADD app.ini.template /home/git/app.ini.template
|
|
|
|
# setup log paths
|
|
RUN mkdir -p /run/gitea && chown -R git:git /run/gitea
|
|
RUN sed -e 's,^logfile=.*$,logfile=/run/gitea/supervisord.log,' -i /etc/supervisor/supervisord.conf
|
|
|
|
RUN ln -s /app/data/ssh /home/git/.ssh
|
|
RUN ln -s /app/data/gitconfig /home/git/.gitconfig
|
|
|
|
ADD start.sh /home/git/start.sh
|
|
|
|
COPY sshd_config /etc/ssh/sshd_config
|
|
|
|
CMD [ "/home/git/start.sh" ]
|
|
|