Skip to content

Commit cd200d2

Browse files
committed
feat: add Docker support for building and running 🐳
- Introduce Dockerfile for building the application. - Add compose.yaml for service configuration. - Include .dockerignore to exclude unnecessary files. - Bump version to 1.3.1.
1 parent adde66e commit cd200d2

File tree

5 files changed

+247
-83
lines changed

5 files changed

+247
-83
lines changed

.dockerignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Rust build artifacts
2+
**/*.rs.bk
3+
*.pdb
4+
5+
# Docker specific
6+
Dockerfile*
7+
docker-compose*
8+
.docker/
9+
10+
# Git and version control
11+
.git*
12+
13+
# Documentation
14+
/docs
15+
16+
# Project build files
17+
Cargo.lock
18+
**/.cargo-ok
19+
20+
# Test artifacts
21+
**/*test-*
22+
**/*Test*
23+
24+
# Editor configs
25+
.editorconfig
26+
27+
/target
28+
/.idea
29+
*~
30+
Thumbs.db
31+
.DS*
32+
/.vscode/*.log
33+
.*~

0 commit comments

Comments
 (0)