File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ Targets:
110
110
build Build all available artefacts (executable, docker image, etc.)
111
111
build-go Build node executable for the current environment (default build)
112
112
build-go-all Build node executables for all available environments
113
+ build-docker Build docker image
113
114
Install:
114
115
install Install node executable
115
116
Test:
@@ -137,6 +138,7 @@ Targets:
137
138
Dependencies:
138
139
deps Install all the dependencies (tools, etc.)
139
140
deps-tparse Install tparse v0.16.0 (github.com/mfridman/tparse@v0.16.0)
141
+ deps-heighliner Install heighliner v1.7.1 (github.com/strangelove-ventures/heighliner@v1.7.1)
140
142
Help:
141
143
help Show this help.
142
144
@@ -148,14 +150,23 @@ This Makefile depends on docker. To install it, please follow the instructions:
148
150
149
151
### Build
150
152
151
- To build the ` axoned ` node, invoke the goal ` build ` of the ` Makefile ` :
153
+ To build the ` axoned ` node, invoke the goal ` build-go ` of the ` Makefile ` :
152
154
153
155
``` sh
154
- make build
156
+ make build-go
155
157
```
156
158
157
159
The binary will be generated under the folder ` target/dist ` .
158
160
161
+ ### Build a docker image
162
+
163
+ This project leverages [ heighliner] ( https://github.com/strangelove-ventures/heighliner ) to simplify the management and
164
+ creation of production-grade container images. To build a Docker image, use the ` build-docker ` target in the ` Makefile ` :
165
+
166
+ ``` sh
167
+ make build-docker
168
+ ```
169
+
159
170
### Run a local network
160
171
161
172
To initialize a local network configuration, invoke the goal ` chain-init ` of the ` Makefile ` :
You can’t perform that action at this time.
0 commit comments