mirror of
https://github.com/containers/podman.git
synced 2025-06-01 09:06:44 +08:00

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>
10 lines
236 B
Docker
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
|