Skip to content
Snippets Groups Projects
Select Git revision
  • 77e8b4bff39e48ec637a9215b4ac6e1b25f5a266
  • main default protected
  • api-redesign
  • 0.10.2
  • 0.10.1
  • 0.10.0
  • 0.9.2
  • 0.9.1
  • 0.9.0
  • 0.8.1
  • 0.8.0
  • 0.7.0
12 results

build.gradle.kts

Blame
  • Dockerfile 363 B
    FROM registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest
    
    RUN apt-get update && \
        apt-get -y install --no-install-recommends \
          python-pip \
          python-wheel \
          python-setuptools \
          apksigner \
          binfmt-support
    
    RUN pip install s3cmd
    
    ADD update_repo.sh /
    ADD Makefile /
    
    ENV UPDATE_WAIT=10
    
    ENTRYPOINT [ "/update_repo.sh" ]