18 lines
611 B
Docker
18 lines
611 B
Docker
# Use the same base image as the Gitea container
|
|
FROM registry.suse.com/bci/bci-base:15.7
|
|
|
|
# Add the custom CA to the trust store
|
|
COPY rabbitmq-config/certs/cert.pem /usr/share/pki/trust/anchors/gitea-rabbitmq-ca.crt
|
|
RUN update-ca-certificates
|
|
|
|
# Install git and ssh
|
|
RUN zypper -n in git-core openssh-clients binutils
|
|
|
|
# Copy the pre-built binary into the container
|
|
COPY workflow-pr/workflow-pr /usr/local/bin/workflow-pr
|
|
COPY workflow-pr/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +4755 /usr/local/bin/entrypoint.sh
|
|
|
|
# Set the entrypoint for the container
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|