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

Comments added

parent 3d67a114
No related branches found
No related tags found
No related merge requests found
FROM centos:7
MAINTAINER stefano.bagnasco@to.infn.it
# Install needed python libraries
RUN yum install -y numpy python-matplotlib &&\
yum clean all
# Add the script file
COPY mandelbrot.py /usr/lib/mandelbrot.py
RUN chmod a+x /usr/lib/mandelbrot.py
# Define entrypoint and default values for args
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