Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 52 additions & 7 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
target/
# MISC
.gitignore
ARCHITECTURE.md
CHANGELOG.md
CLAUDE.md
README.md
status.md

# Docker related
Dockerfile
Dockerfile_FE
docker-compose.yml
docker-compose.block-producer.yml
docker-compose.archive.devnet.compare.yml
docker-compose.archive.devnet.yml
docker-compose.archive.local.producers.yml
docker/
run-debugger-ocaml-node.yaml
run.yaml

.dockerignore

cli/bin
cli/tests
!cli/bin/snark-worker
Expand All @@ -19,15 +35,44 @@ tools/heartbeats-processor/*.db
circuit-blobs

# GH workflows
.claude
.github
.idea

# Infrastructure
helm

# Output of build-wasm
pkg

# Outputs of build-tests-webrtc

# We do not use Nix to build the Docker images, therefore we can ignore the Nix
# related files
flake.lock
flake.nix

# Environment files
.env
.env.example

# Rust related files
target/
.rustfmt.toml
clippy.toml
taplo.toml

## Outputs of build-tests-webrtc
cargo-build-test.json
tests.tsv
tests.tsv


# The website must not be included
website

# NPM related
node_modules

# Frontend
frontend/.editorconfig
frontend/.gitignore
frontend/.vscode
frontend/dist/frontend
frontend/Dockerfile
frontend/node_modules
Loading