- build.js: cargo build first, then docker build — no more Docker-in-Docker - .dockerignore: exclude target/ but re-include target/x86_64-unknown-linux-gnu/release/ so pre-built binaries are available in Docker build context
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
.git/
|
|
.idea/
|
|
.vscode/
|
|
node_modules/
|
|
*.log
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Exclude all target/ content, then selectively re-include linux release binaries
|
|
target/
|
|
!target/x86_64-unknown-linux-gnu/release/
|