Skip to content

Commit 2d1e1b4

Browse files
committed
Changed version to 23.12.23
Signed-off-by: Toomore Chiang <[email protected]>
1 parent b427032 commit 2d1e1b4

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@v4
1919
- name: Build the base image
20-
run: docker build -t coscupweb-base:23.11.27 -f ./Dockerfile-base-dev ./
20+
run: docker build -t coscupweb-base:23.12.23 -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.11.27 -f ./Dockerfile-base-dev ./
21+
run: docker build -t coscupweb-base:23.12.23 -f ./Dockerfile-base-dev ./
2222
- name: UP
2323
env:
2424
CLIENT_ID: ${{ secrets.TDX_CLIENT_ID }}

Dockerfile-app

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM coscupweb-base:23.11.27
1+
FROM coscupweb-base:23.12.23
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.11.27
1+
FROM coscupweb-base:23.12.23
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.11.27 -f ./Dockerfile-base ./
1+
docker build --no-cache=true -t coscupweb-base:23.12.23 -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.11.27"
25+
image: "coscupweb-base:23.12.23"
2626
links:
2727
- "memcached-prod:memcached"
2828
- "queue_sender:rabbitmq"
@@ -55,7 +55,7 @@ services:
5555
command: sh
5656

5757
cmdapp:
58-
image: "coscupweb-base:23.11.27"
58+
image: "coscupweb-base:23.12.23"
5959
links:
6060
- "memcached-prod:memcached"
6161
- "queue_sender:rabbitmq"
@@ -87,7 +87,7 @@ services:
8787
entrypoint: ["poetry", "run", "python3", "cmdtools/main.py"]
8888

8989
webapp:
90-
image: "coscupweb-base:23.11.27"
90+
image: "coscupweb-base:23.12.23"
9191
links:
9292
- "memcached-prod:memcached"
9393
- "queue_sender:rabbitmq"
@@ -134,7 +134,7 @@ services:
134134
]
135135

136136
apiapp:
137-
image: "coscupweb-base:23.11.27"
137+
image: "coscupweb-base:23.12.23"
138138
links:
139139
- "memcached-prod:memcached"
140140
- "queue_sender:rabbitmq"
@@ -170,7 +170,7 @@ services:
170170
entrypoint: ["poetry", "run", "uvicorn", "api.main:app", "--reload"]
171171

172172
celery_worker:
173-
image: "coscupweb-base:23.11.27"
173+
image: "coscupweb-base:23.12.23"
174174
links:
175175
- "queue_sender:rabbitmq"
176176
- "secretary_mongo:mongo"
@@ -216,7 +216,7 @@ services:
216216
]
217217

218218
docs:
219-
image: "coscupweb-base:23.11.27"
219+
image: "coscupweb-base:23.12.23"
220220
links:
221221
- "memcached-prod:memcached"
222222
- "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.11.27 -f ./Dockerfile-base-dev ./
17+
docker build -t coscupweb-base:23.12.23 -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.11.27 -f ./Dockerfile-base-dev ./
22+
docker build -t coscupweb-base:23.12.23 -f ./Dockerfile-base-dev ./
2323

2424
!!! note
2525

pyproject.toml

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

88
[tool.poetry.dependencies]
99
Markdown = "^3.3.7"

0 commit comments

Comments
 (0)