kapsikkum-unmanic – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # Unmanic Docker Image
2  
3  
4 ### Building the Source
5 Before building the image, you need to have built the unmanic python package:
6 ```bash
7 rm -rfv ./build && rm -fv ./dist/unmanic-*
8 git submodule update --init --recursive
9 python3 ./setup.py sdist bdist_wheel
10 ```
11  
12  
13 ### Building the image
14 Simply run this command from the root of the project:
15 ```bash
16 docker build -f ./docker/Dockerfile -t josh5/unmanic:latest .
17 ```