gitea_heroku/Dockerfile

13 lines
194 B
Docker
Raw Normal View History

2024-10-18 22:54:52 +02:00
FROM gitea/gitea:1.14.5-rootless
2024-10-23 18:23:51 +02:00
WORKDIR /app
COPY heroku-app.txt /app/heroku-app.txt
2024-10-18 22:54:52 +02:00
USER root
2024-10-23 18:23:51 +02:00
2024-10-18 22:54:52 +02:00
COPY script.sh /app/script.sh
2024-10-23 18:23:51 +02:00
2024-10-18 22:54:52 +02:00
RUN chmod +x /app/script.sh
ENTRYPOINT ./script.sh