You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41-11Lines changed: 41 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,6 +176,42 @@ volumes:
176
176
- Uncomment the volume mount `./app:/srv/app/src` to edit code locally
177
177
- Change `NODE_ENV=development`
178
178
179
+
## Image customization
180
+
181
+
### Build Arguments
182
+
183
+
You can customize the Docker image build process using build arguments (`--build-arg`). This allows you to control the base image and environment configuration.
184
+
185
+
#### Available Build Arguments
186
+
187
+
| Argument | Default Value | Description |
188
+
|----------|---------------|-------------|
189
+
| `BASE_IMAGE` | `node` | Base Docker image (e.g., `node`, `arm64v8/node` for ARM architecture) |
190
+
| `NODE_VERSION` | `22-alpine` | Node.js version and variant for the base image |
0 commit comments