mirror of
https://github.com/stan220/flathub.git
synced 2026-09-08 18:29:08 +00:00
11 lines
302 B
Docker
11 lines
302 B
Docker
FROM ghcr.io/flathub/flatpak-external-data-checker:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y gh jq parallel curl && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
ADD gh-ls-org /usr/local/bin/gh-ls-org
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|