docker: container image (Dockerfile + .dockerignore + minimal default config)
This commit is contained in:
parent
0be6daa1c2
commit
281d3a962c
3 changed files with 65 additions and 0 deletions
18
.dockerignore
Normal file
18
.dockerignore
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Keep the build context small and secret-free. Only the release binary, the
|
||||
# example config, and docker/default.conf are COPYed into the image.
|
||||
.git
|
||||
tls/
|
||||
*.pem
|
||||
*.key
|
||||
echoircd.conf
|
||||
*.bak
|
||||
*.bak-*
|
||||
config.toml.bak*
|
||||
target/debug/
|
||||
target/release/deps/
|
||||
target/release/build/
|
||||
target/release/incremental/
|
||||
target/release/.fingerprint/
|
||||
target/release/examples/
|
||||
target/.rustc_info.json
|
||||
target/CACHEDIR.TAG
|
||||
Loading…
Add table
Add a link
Reference in a new issue