gitea-heroku/Dockerfile

13 lines
189 B
Docker
Raw Permalink Normal View History

2024-12-15 13:21:40 +01:00
FROM gitea/gitea:1.14.5
2024-12-15 13:10:44 +01:00
2024-12-15 13:21:40 +01:00
WORKDIR /app
2024-12-15 13:10:44 +01:00
2024-12-15 13:21:40 +01:00
COPY link.txt ./
COPY config-script.sh ./
2024-12-15 13:10:44 +01:00
2024-12-15 13:21:40 +01:00
ENV GITEA_CUSTOM=/var/lib/gitea/custom
2024-12-15 13:10:44 +01:00
2024-12-15 13:27:07 +01:00
RUN chmod +x ./config-script.sh
2024-12-15 13:10:44 +01:00
2024-12-15 13:21:40 +01:00
ENTRYPOINT ["./config-script.sh"]