blob: 8983213edc3fc7475519a31e1733676d5ebaf457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
## Configuration
[_(general configuration and options)_](../readme.md)
### `ARG ant=1.10.6`
The ant version to be used. Supported values:
- `1.10.6` (default)
- `1.10.1` (default)
## Example build commands:
(To be executed from the `<lombokhome>/docker` directory)
```
docker build -t lombok-ant-jdk12 -f ant/Dockerfile .
docker build -t lombok-ant-jdk12 --build-arg lombokjar=lombok-1.16.20.jar -f ant/Dockerfile .
```
## Example run commands:
```
docker run -it lombok-ant-jdk12
docker run --rm -it -v /<lombokhome>/dist/lombok.jar:/workspace/lombok.jar lombok-ant-jdk12
```
## Example container commands:
```
ant dist
```
|