Skip to content

Commit 66320f1

Browse files
[feat] update docker ignore file
1 parent 43ad603 commit 66320f1

2 files changed

Lines changed: 44 additions & 41 deletions

File tree

.dockerignore

Lines changed: 42 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,61 @@
1-
# =========================================
2-
# Dependency directories and build output
3-
# =========================================
4-
node_modules/
5-
dist/
6-
out-tsc/
7-
.tmp/
8-
.cache/
9-
.angular/
1+
# ================================
2+
# Node and build output
3+
# ================================
4+
node_modules
5+
dist
6+
out-tsc
7+
.angular
8+
.cache
9+
.tmp
1010

11-
# =========================================
12-
# Angular CLI, build tools, and test artifacts
13-
# =========================================
14-
coverage/
15-
.vite/
16-
.vitepress/
17-
jest/
18-
cypress/
19-
cypress/screenshots/
20-
cypress/videos/
21-
reports/
22-
playwright-report/
11+
# ================================
12+
# Testing & Coverage
13+
# ================================
14+
coverage
15+
jest
16+
cypress
17+
cypress/screenshots
18+
cypress/videos
19+
reports
20+
playwright-report
21+
.vite
22+
.vitepress
2323

24-
# =========================================
25-
# Environment and log files
26-
# =========================================
24+
# ================================
25+
# Environment & log files
26+
# ================================
2727
*.env*
28-
!.env.production
28+
!*.env.production
2929
*.log
3030
*.tsbuildinfo
3131

32-
# =========================================
33-
# IDE and local development files
34-
# =========================================
35-
.vscode/
36-
.idea/
37-
*.swp
32+
# ================================
33+
# IDE & OS-specific files
34+
# ================================
35+
.vscode
36+
.idea
3837
.DS_Store
3938
Thumbs.db
39+
*.swp
4040

41-
# =========================================
42-
# Version control
43-
# =========================================
44-
.git/
41+
# ================================
42+
# Version control & CI files
43+
# ================================
44+
.git
4545
.gitignore
4646

47-
# =========================================
48-
# Docker-specific config files (not needed inside image)
49-
# =========================================
47+
# ================================
48+
# Docker & local orchestration
49+
# ================================
5050
Dockerfile
51+
Dockerfile.*
5152
.dockerignore
53+
docker-compose.yml
5254
docker-compose*.yml
5355

54-
# =========================================
56+
# ================================
5557
# Miscellaneous
56-
# =========================================
58+
# ================================
5759
*.bak
5860
*.old
5961
*.tmp

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
env:
7171
CI: true
7272
NODE_ENV: test
73-
timeout-minutes: 10
73+
timeout-minutes: 5
7474

7575
# 8. Log in to Docker Hub
7676
- name: Log in to Docker Hub
@@ -91,3 +91,4 @@ jobs:
9191
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKERHUB_PROJECT_NAME }}:latest
9292
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKERHUB_PROJECT_NAME }}:${{ steps.meta.outputs.SHORT_SHA }}
9393
cache-from: type=local,src=/tmp/.buildx-cache
94+
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max

0 commit comments

Comments
 (0)