mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-09-16 07:42:07 -04:00
Docker only recognizes `#` as a valid comment indicator in .dockerignore files. Using `//` causes the lines to be incorrectly parsed as glob patterns rather than comments. While this may not cause fatal errors if no matching files exist, it is syntactically invalid and could lead to unexpected behavior. Corrected the syntax to use `#`.
16 lines
187 B
Text
16 lines
187 B
Text
# Ignore everything
|
|
*
|
|
|
|
# Allow what is needed
|
|
!.git
|
|
!docker/healthcheck.sh
|
|
!docker/start.sh
|
|
!macros
|
|
!migrations
|
|
!src
|
|
|
|
!build.rs
|
|
!Cargo.lock
|
|
!Cargo.toml
|
|
!rustfmt.toml
|
|
!rust-toolchain.toml
|