blob: 3f81d06735f27711ba7a0e53777e41b284e4d73d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
If you have trouble with the dependencies, the Dockerfile in this
directory will build a simple container that you can use. For
example:
docker build -t deploystatic .
And then to use it:
docker run -it --rm -v `pwd`:/source -v /tmp/statictest:/target deploystatic
(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.
|