You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
365B

  1. FROM gitea/gitea:1.10-linux-ARCH_PLACEHOLDER
  2. #ENV GIT_HOME /home/git
  3. RUN apk --no-cache add openssl mariadb-client
  4. # Configuration
  5. # $HOME doesn't work with COPY
  6. COPY app.ini /home/${USER}/
  7. COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
  8. RUN chmod 755 /usr/local/bin/docker-entrypoint.sh
  9. ENTRYPOINT []
  10. CMD ["/usr/local/bin/docker-entrypoint.sh"]