Skip to content

Commit a5b183f

Browse files
committed
Upgrade packages
Signed-off-by: Toomore Chiang <[email protected]>
1 parent 660f062 commit a5b183f

9 files changed

+14
-14
lines changed

.github/workflows/build_image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v3
1919
- name: Build the base image
20-
run: docker build -t coscupweb-base:23.04.20 -f ./Dockerfile-base-dev ./
20+
run: docker build -t coscupweb-base:23.05.03 -f ./Dockerfile-base-dev ./
2121
- name: List images
2222
run: docker images
2323
- name: Rename sample setting file

.github/workflows/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Rename sample setting file
1919
run: mv ./setting_sample.py ./setting.py
2020
- name: Build the base image
21-
run: docker build -t coscupweb-base:23.04.20 -f ./Dockerfile-base-dev ./
21+
run: docker build -t coscupweb-base:23.05.03 -f ./Dockerfile-base-dev ./
2222
- name: UP
2323
run: docker compose up --build --detach
2424
- name: List images

Dockerfile-app

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM coscupweb-base:23.04.20
1+
FROM coscupweb-base:23.05.03
22

33
ADD ./client_secret.json \
44
./secretary-e00794553a7d.json \

Dockerfile-app-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM coscupweb-base:23.04.20
1+
FROM coscupweb-base:23.05.03
22

33
ADD ./setting.py \
44
./uwsgi.ini \

build-base.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build --no-cache=true -t coscupweb-base:23.04.20 -f ./Dockerfile-base ./
1+
docker build --no-cache=true -t coscupweb-base:23.05.03 -f ./Dockerfile-base ./

docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- backend
2323

2424
workerapp:
25-
image: "coscupweb-base:23.04.20"
25+
image: "coscupweb-base:23.05.03"
2626
links:
2727
- "memcached-prod:memcached"
2828
- "queue_sender:rabbitmq"
@@ -53,7 +53,7 @@ services:
5353
command: sh
5454

5555
cmdapp:
56-
image: "coscupweb-base:23.04.20"
56+
image: "coscupweb-base:23.05.03"
5757
links:
5858
- "memcached-prod:memcached"
5959
- "queue_sender:rabbitmq"
@@ -83,7 +83,7 @@ services:
8383
entrypoint: ["poetry", "run", "python3", "cmdtools/main.py"]
8484

8585
webapp:
86-
image: "coscupweb-base:23.04.20"
86+
image: "coscupweb-base:23.05.03"
8787
links:
8888
- "memcached-prod:memcached"
8989
- "queue_sender:rabbitmq"
@@ -116,7 +116,7 @@ services:
116116
entrypoint: ["poetry", "run", "flask", "--app", "main:app", "run", "--host", "0.0.0.0", "--debug"]
117117

118118
apiapp:
119-
image: "coscupweb-base:23.04.20"
119+
image: "coscupweb-base:23.05.03"
120120
links:
121121
- "memcached-prod:memcached"
122122
- "queue_sender:rabbitmq"
@@ -150,7 +150,7 @@ services:
150150
entrypoint: ["poetry", "run", "uvicorn", "api.main:app", "--reload"]
151151

152152
celery_worker:
153-
image: "coscupweb-base:23.04.20"
153+
image: "coscupweb-base:23.05.03"
154154
links:
155155
- "queue_sender:rabbitmq"
156156
- "secretary_mongo:mongo"
@@ -177,7 +177,7 @@ services:
177177
entrypoint: ["poetry", "run", "celery", "-A", "celery_task.celery_main", "worker", "-B", "-l", "info", "-O", "fair", "-c", "4", "--logfile", "/var/log/workers/log.log"]
178178

179179
docs:
180-
image: "coscupweb-base:23.04.20"
180+
image: "coscupweb-base:23.05.03"
181181
links:
182182
- "memcached-prod:memcached"
183183
- "queue_sender:rabbitmq"

docs_dev/docs/dev/build-base-image.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ We use the [docker compose](https://docs.docker.com/compose/) (not **docker-comp
1414

1515
Build the base image for local development.
1616

17-
docker build -t coscupweb-base:23.04.20 -f ./Dockerfile-base-dev ./
17+
docker build -t coscupweb-base:23.05.03 -f ./Dockerfile-base-dev ./
1818

1919
!!! note
2020

docs_dev/docs/dev/build-base-image.zh_TW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ description: 在本地端建立基本映像檔
1919

2020
建立「基本映像檔」於本地開發。(建立的版本號會依[每次釋出](https://github.com/COSCUP/COSCUP-Volunteer/releases)而有所改變)
2121

22-
docker build -t coscupweb-base:23.04.20 -f ./Dockerfile-base-dev ./
22+
docker build -t coscupweb-base:23.05.03 -f ./Dockerfile-base-dev ./
2323

2424
!!! note
2525

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "coscup-volunteer"
3-
version = "2023.04.20"
3+
version = "2023.05.03"
44
description = "COSCUP Volunteer 志工服務系統,主要解決招募、人員管理、行政流程建立。"
55
authors = ["COSCUP Volunteer <[email protected]>"]
66
license = "AGPL-3.0"

0 commit comments

Comments
 (0)