feat: moved gitea terraform to this repository

This commit is contained in:
2025-01-11 22:39:30 -05:00
parent 88b8e2e7d2
commit 895650a89e
19 changed files with 423 additions and 0 deletions

15
image/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM gitea/gitea:latest
RUN apk add aws-cli xz
ADD --chown=git:git custom /data/gitea
ADD --chown=git:git entrypoint.sh /home/entrypoint.sh
ADD --chown=git:git scripts /home/scripts
RUN chmod +x /home/scripts/*
ADD --chown=git:git crontab.txt /home/crontab.txt
RUN /usr/bin/crontab /home/crontab.txt
ENTRYPOINT [ "/home/entrypoint.sh" ]
CMD [ "/usr/bin/s6-svscan", "/etc/s6" ]