heroku-gitea/Dockerfile

10 lines
222 B
Docker
Raw Normal View History

2024-10-19 13:11:55 +02:00
FROM gitea/gitea:1.14.5-rootless
2024-10-20 14:56:26 +02:00
RUN chmod a+rwx /var/lib/gitea/custom/conf/app.ini
2024-10-19 13:50:12 +02:00
2024-10-20 14:56:26 +02:00
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
2024-10-20 14:34:56 +02:00
2024-10-20 14:56:26 +02:00
RUN chmod +x /usr/local/bin/entrypoint.sh
2024-10-20 14:49:32 +02:00
2024-10-20 14:56:26 +02:00
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]