Skip to content

Commit

Permalink
feat: add dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
cubxxw committed Nov 1, 2024
1 parent 4a267a2 commit baad36f
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 4 deletions.
82 changes: 82 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Temporary files
_output/
*.log
*.tmp
*.temp

# Version control
.git/
.gitignore
.gitattributes
.github/

# Documentation
*.md
docs/
CONTRIBUTING.md
LICENSE
OWNERS
CODEOWNERS

# Development and build files
Makefile
*.Makefile
*.mk
.vscode/
.idea/
*.swp
*.swo
*.swn
*.bak

# Test files
test/
*_test.go
*.test

# Configuration and environment files
.env
*.env
*.yaml
*.yml
!configs/config.yaml

# Tools and dependencies
vendor/
node_modules/
tools/
scripts/

# Debug files
*.pprof
*.prof
*.trace

# Binary files
*.exe
*.dll
*.so
*.dylib

# Project specific
assets/
examples/
third_party/
init/
sweep.yaml

# Logs
*.log
logs/
log/

# Web development files
*.css
*.js
*.html
web/

# macOS system files
.DS_Store
.AppleDouble
.LSOverride
3 changes: 0 additions & 3 deletions build/images/voiceflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ WORKDIR /telepace/app
ENV GO111MODULE=$GO111MODULE
ENV GOPROXY=$GOPROXY

COPY go.mod go.sum ./
RUN go mod download

COPY . .

RUN make build BINS=voiceflow
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,4 @@ require (
golang.org/x/text v0.19.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.7 // indirect
)

0 comments on commit baad36f

Please sign in to comment.