No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
350B

  1. FROM gitea/gitea:1.10-linux-ARCH_PLACEHOLDER
  2. #ENV GIT_HOME /home/git
  3. RUN apk --no-cache add openssl
  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"]