Skip to content
Snippets Groups Projects
Commit 3d67a114 authored by Stefano Bagnasco's avatar Stefano Bagnasco
Browse files

Work around udocker bug in handling ENTRYPOINT

parent 72f3478d
No related branches found
No related tags found
No related merge requests found
FROM centos:7
MAINTAINER stefano.bagnasco@to.infn.it
RUN yum install -y numpy python-matplotlib &&\
yum clean all
COPY mandelbrot.py /usr/lib/mandelbrot.py
ENTRYPOINT ["/usr/bin/python","/usr/lib/mandelbrot.py"]
RUN chmod a+x /usr/lib/mandelbrot.py
ENTRYPOINT ["/usr/lib/mandelbrot.py"]
CMD ["50", "50.", "601", "401"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment