Skip to content

Commit d409dc9

Browse files
committed
Ready to release 22.10.17
Signed-off-by: Toomore Chiang <[email protected]>
1 parent ee2f91a commit d409dc9

9 files changed

+9
-9
lines changed

.github/workflows/build_image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
context: .
2323
file: Dockerfile-base-dev
24-
tags: coscupweb-base:22.10.13
24+
tags: coscupweb-base:22.10.17
2525
load: true
2626
- name: List images
2727
run: docker images

.github/workflows/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Rename sample setting file
1616
run: mv ./setting_sample.py ./setting.py
1717
- name: Build the base image
18-
run: docker build -t coscupweb-base:22.10.13 -f ./Dockerfile-base-dev ./
18+
run: docker build -t coscupweb-base:22.10.17 -f ./Dockerfile-base-dev ./
1919
- name: UP
2020
run: docker compose up --build --detach
2121
- name: List images

Dockerfile-app

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

33
ADD ./client_secret.json ./client_secret.json
44
ADD ./privacy.md ./privacy.md

Dockerfile-app-dev

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

33
#ADD ./client_secret.json ./client_secret.json
44
ADD ./cmdtools ./cmdtools

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ We use the [docker compose](https://docs.docker.com/compose/) (not `docker-compo
8080

8181
Build the base images first. (**Notice: In this way, you no need to sign in to Docker Desktop account.**)
8282

83-
docker build -t coscupweb-base:22.10.13 -f ./Dockerfile-base-dev ./
83+
docker build -t coscupweb-base:22.10.17 -f ./Dockerfile-base-dev ./
8484

8585
Setup the `setting.py`
8686

api/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
app = FastAPI(
5555
title='Volunteer API.',
5656
description=DOC_DESC,
57-
version='2022.10.13',
57+
version='2022.10.17',
5858
openapi_tags=TAGS_META,
5959
root_path="/api",
6060
contact={'name': 'Volunteer Team',

build-base.sh

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We use the [docker compose](https://docs.docker.com/compose/) (not docker-compos
1010

1111
Build the base image for local development.
1212

13-
docker build -t coscupweb-base:22.10.13 -f ./Dockerfile-base-dev ./
13+
docker build -t coscupweb-base:22.10.17 -f ./Dockerfile-base-dev ./
1414

1515
!!! note
1616

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 = "2022.10.13"
3+
version = "2022.10.17"
44
description = "COSCUP Volunteer 志工服務系統,主要解決招募、人員管理、行政流程建立。"
55
authors = ["COSCUP Volunteer <[email protected]>"]
66
license = "AGPL-3.0"

0 commit comments

Comments
 (0)