Skip to content

Commit 58e094f

Browse files
committed
Update README.md
1 parent 1420d0b commit 58e094f

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,34 @@ Since the code is meant to be in kubernetes pods, the code needs to be packaged
1414
Their descriptions can be found in `containers/`.
1515
The root folder assumed to build the containers is the root of this package.
1616

17+
To build the taskmaster container, run:
18+
19+
```
20+
docker build . -f containers/taskmaster -t taskmaster:latest
21+
```
22+
23+
The command is similar for the filer container:
24+
25+
```
26+
docker build . -f containers/filer -t filer:latest
27+
```
28+
1729
## Unit testing
1830

1931
Unit testing needs the `tox` package.
32+
33+
You can install the package using `uv`:
34+
35+
```
36+
uv install tox
37+
```
38+
39+
To install different versions using `uv`, you can use:
40+
41+
```
42+
uv python install 3.10 3.11 3.12
43+
```
44+
2045
This software will take care of creating virtual environments and installing dependencies in them before running the actual tests and generating the coverage reports.
2146

2247
```

0 commit comments

Comments
 (0)