-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
58 lines (47 loc) · 1.07 KB
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
# Ignore git directory.
/api/.git/
/api/.gitignore
# Ignore bundler config.
/api/.bundle
# Ignore all environment files (except templates).
/api/.env*
!/api/.env*.erb
# Ignore all default key files.
/api/config/master.key
/api/config/credentials/*.key
# Ignore all logfiles and tempfiles.
/api/log/*
/api/tmp/*
!/api/log/.keep
!/api/tmp/.keep
# Ignore pidfiles, but keep the directory.
/api/tmp/pids/*
!/api/tmp/pids/.keep
# Ignore storage (uploaded files in development and any SQLite databases).
/api/storage/*
!/api/storage/.keep
/api/tmp/storage/*
!/api/tmp/storage/.keep
# Ignore CI service files.
/api/.github
# Ignore development files
/api/.devcontainer
# Ignore Docker-related files
/api/.dockerignore
/api/Dockerfile*
/.dockerignore
/.git
/.github/
/.gitignore
/ansible/
/compose.yml
/compose/
/ddbj_validator/.git/
/noodles_gff-rb/lib/noodles_gff/noodles_gff.so
/noodles_gff-rb/target/
/noodles_gff-rb/tmp/
/web/.github/
/web/.gitignore
/web/dist/
/web/node_modules/