-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile-app
53 lines (46 loc) · 1.4 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
FROM secretaryweb-base:24.02.15
ADD ./client_secret.json ./client_secret.json
ADD ./main.py ./main.py
ADD ./setting.py ./setting.py
ADD ./uwsgi.ini ./uwsgi.ini
ADD ./celery_task/__init__.py \
./celery_task/celery.py \
./celery_task/task_ga.py \
./celery_task/task_mail_sys.py \
./celery_task/
ADD ./models/__init__.py \
./models/base.py \
./models/index.py \
./models/subscriberdb.py \
./models/
ADD ./module/__init__.py \
./module/awsses.py \
./module/ga.py \
./module/sender.py \
./module/subscriber.py \
./module/utils.py \
./module/
ADD ./templates/mail/coscup_base.html \
./templates/mail/coscup_subscribe_login_code.html \
./templates/mail/coscup_subscribe_verify_mail.html \
./templates/mail/
ADD ./templates/admin_subscriber_add.html \
./templates/admin_subscriber_list.html \
./templates/admin_subscriber_open.html \
./templates/admin_subscriber.html \
./templates/base_subscribe.html \
./templates/base.html \
./templates/index.html \
./templates/subscribe_coscup.html \
./templates/subscriber_error.html \
./templates/subscriber_intro.html \
./templates/subscriber_verify_mail.html \
./templates/subscriber.html \
./templates/
ADD ./view/__init__.py \
./view/admin_subscriber.py \
./view/reader.py \
./view/subscribe.py \
./view/subscriber.py \
./view/trello.py \
./view/