heroku_gitea/Dockerfile

14 lines
188 B
Docker
Raw Normal View History

2024-10-24 21:13:36 +02:00
FROM gitea/gitea:1.14.5
WORKDIR /app
COPY app_link.txt ./
COPY conf_script.sh ./
2024-10-24 21:46:29 +02:00
ENV GITEA_CUSTOM=/var/lib/gitea/custom
2024-10-24 21:44:18 +02:00
2024-10-24 21:13:36 +02:00
RUN chmod +x ./conf_script.sh
ENTRYPOINT ["./conf_script.sh"]