12 lines
306 B
Docker
12 lines
306 B
Docker
FROM registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest
|
|
|
|
RUN git clone https://gitlab.com/fdroid/fdroiddata /fdroiddata
|
|
|
|
ADD installSdks /installSdks
|
|
RUN chmod +x /installSdks && /installSdks && rm /installSdks
|
|
|
|
ADD entrypoint /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|