This commit is contained in:
2023-03-22 02:28:43 -07:00
parent 4e84b0429a
commit 5f5df4a1d6
9 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
# Container image that runs your code
FROM rockylinux:9.1
RUN dnf install -y \
rpm-sign \
unzip \
pinentry \
wget \
zip
COPY setup_gpg.sh /setup_gpg.sh
RUN chmod +x /setup_gpg.sh
RUN /setup_gpg.sh
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]