-
Notifications
You must be signed in to change notification settings - Fork 34
/
Dockerfile-app
164 lines (152 loc) · 4.1 KB
/
Dockerfile-app
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
FROM coscupweb-base:24.07.25
ADD ./client_secret.json \
./secretary-e00794553a7d.json \
./setting.py \
./uwsgi.ini \
./main.py \
./
ADD ./celery_task/__init__.py \
./celery_task/celery_main.py \
./celery_task/task*.py \
./celery_task/
ADD ./models/__init__.py \
./models/api_tokendb.py \
./models/applyreviewdb.py \
./models/base.py \
./models/budgetdb.py \
./models/dispensedb.py \
./models/expensedb.py \
./models/formdb.py \
./models/index.py \
./models/mailletterdb.py \
./models/mattermost_link_db.py \
./models/mattermostdb.py \
./models/oauth_db.py \
./models/projectdb.py \
./models/senderdb.py \
./models/tasksdb.py \
./models/teamdb.py \
./models/telegram_db.py \
./models/trackdb.py \
./models/users_db.py \
./models/usessiondb.py \
./models/waitlistdb.py \
./models/
ADD ./module/__init__.py \
./module/api_token.py \
./module/applyreview.py \
./module/awsses.py \
./module/budget.py \
./module/dietary_habit.py \
./module/dispense.py \
./module/expense.py \
./module/form.py \
./module/gitlab_api.py \
./module/gsuite.py \
./module/ipinfo.py \
./module/mattermost_bot.py \
./module/mattermost_link.py \
./module/mc.py \
./module/oauth.py \
./module/project.py \
./module/project_working.py \
./module/sender.py \
./module/service_sync.py \
./module/skill.py \
./module/tasks.py \
./module/team.py \
./module/telegram_bot.py \
./module/track.py \
./module/users.py \
./module/usession.py \
./module/waitlist.py \
./module/
ADD ./templates/base.html \
./templates/budget.html \
./templates/budget_batch.html \
./templates/bug_report.html \
./templates/coc* \
./templates/expense.html \
./templates/expense_lists.html \
./templates/expense_menu.html \
./templates/expense_my.html \
./templates/form*.html \
./templates/guide_index.html \
./templates/index.html \
./templates/index_guide.html \
./templates/privacy* \
./templates/project*.html \
./templates/recruit_list.html \
./templates/schedule* \
./templates/security_guard* \
./templates/sender*.html \
./templates/setting*.html \
./templates/tasks*.html \
./templates/team*.html \
./templates/user.html \
./templates/
ADD ./templates/mail/base*.html \
./templates/mail/coscup_base.html \
./templates/mail/sender_base.html \
./templates/mail/tasks_star.html \
./templates/mail/welcome.html \
./templates/mail/
ADD ./static/ExpenseStatusLabel.js \
./static/ExpenseInvoiceTotalCard.js \
./static/ExpenseTable.js \
./static/ExpenseEditor.js \
./static/DispenseEditor.js \
./static/DispenseTable.js \
./static/InvoiceList.js \
./static/UserBadge.js \
./static/expense-component.css \
./static/forms.css \
./static/buefy.min.js \
./static/buefy.min.css \
./static/dayjs.min.js \
./static/
ADD ./view/__init__.py \
./view/api.py \
./view/budget.py \
./view/dispense.py \
./view/expense.py \
./view/guide.py \
./view/links.py \
./view/project.py \
./view/recruit.py \
./view/schedule.py \
./view/sender.py \
./view/setting.py \
./view/tasks.py \
./view/team.py \
./view/telegram.py \
./view/user.py \
./view/utils.py \
./view/
ADD ./structs/__init__.py \
./structs/projects.py \
./structs/tasks.py \
./structs/teams.py \
./structs/users.py \
./structs/
ADD ./api/__init__.py \
./api/dependencies.py \
./api/main.py \
./api/
ADD ./api/apistructs/__init__.py \
./api/apistructs/items.py \
./api/apistructs/members.py \
./api/apistructs/projects.py \
./api/apistructs/sender.py \
./api/apistructs/tasks.py \
./api/apistructs/teams.py \
./api/apistructs/users.py \
./api/apistructs/
ADD ./api/routers/__init__.py \
./api/routers/members.py \
./api/routers/projects.py \
./api/routers/sender.py \
./api/routers/tasks.py \
./api/routers/teams.py \
./api/routers/user.py \
./api/routers/