Skip to content

Commit 31b3f32

Browse files
committed
Improve documentation and debugging info
Update README.md to provide more information about `extern_data`. Do not redirect stderr to `/dev/null` in `build_container.sh` to make debuggin in CI easier. Note that the caller of this script can still do the redirect at will.
1 parent fcb64e9 commit 31b3f32

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ optional.
135135
container. Unlike in "artifacts", the external data path can be either a file
136136
or a directory. However, the source and destination paths for the same
137137
external datum must be of the same type (file or directory) when instantiated.
138+
- "src" shall be a *relative path* to the project diectory where `r10edocker`
139+
is run
140+
- "dest" shall be an *absolut path* in the final Docker container image
138141
- "include_ca_bundle" dictates a root CA bundle from the `cacert` package of
139142
nixpkgs will be installed in the container image. If the value of this field
140143
is set to `true` the root CA bundle will be included in the container, which

pkg/r10e-docker/files/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ all: r10e-docker
66

77
.PHONY: r10e-docker
88
r10e-docker:
9-
$(mkfile_dir)/build_container.sh 2>/dev/null
9+
$(mkfile_dir)/build_container.sh
1010

1111
.PHONY: clean
1212
clean:

0 commit comments

Comments
 (0)