#########################
# .dockeringnore
# Reference: https://docs.docker.com/engine/reference/builder/#dockerignore-file
#########################

# Blacklist everything
*

# Include the documentation
!README.md
!LICENSE

# Include the source code
!src/
!src/**
!Cargo.toml
!Cargo.lock

# Include the output binary
!target/release/
!target/release/**
