Add build instructions to README.md

This commit is contained in:
Andreas Tsouchlos 2023-12-24 03:43:36 +01:00
parent 0366f7c2e3
commit bbe2ce0442

View File

@ -1,2 +1,23 @@
# ba-letter # ba-letter
Repository containing latex source for the Bachelor's Thesis paper.
## Build
### Build on host
```bash
$ make
```
### Build using docker
1. Build docker image
```bash
$ docker build -f dockerfiles/Dockerfile.alpine . -t ba-letter
```
2. Build examples
```bash
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` ba-letter make
```