RUN apt-get -y update && apt-get -y upgrade && apt-get -y install python3-jinja2 python3-markdown python3-dateutil && apt-get -y clean
RUN mkdir /source /target
ADD deploystatic.py /
-ENTRYPOINT /deploystatic.py /source /target
+ENTRYPOINT ["/deploystatic.py"]
+CMD ["/source", "/target"]
\ No newline at end of file
(In this case taking the templates in the current directory and deploying the
result to /tmp/statictest - adjust for your own directories)
+
+You can also just specify the default parameters as docker arguments.
\ No newline at end of file