Files
podman/contrib/upldrel/Dockerfile
Chris Evich 370b1a887c Cirrus: Reimplement release archive + upload
The initial implementation was far more complicated than necessary.
Strip out the complexities in favor of a simpler and more direct
approach.

Signed-off-by: Chris Evich <cevich@redhat.com>
2019-08-28 11:54:06 -04:00

10 lines
236 B
Docker

FROM quay.io/libpod/imgts:latest
RUN yum -y update && \
yum -y install unzip && \
rpm -V unzip && \
yum clean all
COPY /contrib/upldrel/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod 755 /usr/local/bin/entrypoint.sh