Skip to content

Commit

Permalink
Ready to release 22.10.17
Browse files Browse the repository at this point in the history
Signed-off-by: Toomore Chiang <toomore0929@gmail.com>
  • Loading branch information
toomore committed Oct 17, 2022
1 parent ee2f91a commit d409dc9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
context: .
file: Dockerfile-base-dev
tags: coscupweb-base:22.10.13
tags: coscupweb-base:22.10.17
load: true
- name: List images
run: docker images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Rename sample setting file
run: mv ./setting_sample.py ./setting.py
- name: Build the base image
run: docker build -t coscupweb-base:22.10.13 -f ./Dockerfile-base-dev ./
run: docker build -t coscupweb-base:22.10.17 -f ./Dockerfile-base-dev ./
- name: UP
run: docker compose up --build --detach
- name: List images
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-app
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM coscupweb-base:22.10.13
FROM coscupweb-base:22.10.17

ADD ./client_secret.json ./client_secret.json
ADD ./privacy.md ./privacy.md
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-app-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM coscupweb-base:22.10.13
FROM coscupweb-base:22.10.17

#ADD ./client_secret.json ./client_secret.json
ADD ./cmdtools ./cmdtools
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ We use the [docker compose](https://docs.docker.com/compose/) (not `docker-compo

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

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

Setup the `setting.py`

Expand Down
2 changes: 1 addition & 1 deletion api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
app = FastAPI(
title='Volunteer API.',
description=DOC_DESC,
version='2022.10.13',
version='2022.10.17',
openapi_tags=TAGS_META,
root_path="/api",
contact={'name': 'Volunteer Team',
Expand Down
2 changes: 1 addition & 1 deletion build-base.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker build --no-cache=true -t coscupweb-base:22.10.13 -f ./Dockerfile-base ./
docker build --no-cache=true -t coscupweb-base:22.10.17 -f ./Dockerfile-base ./
2 changes: 1 addition & 1 deletion docs_dev/docs/dev/build-base-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ We use the [docker compose](https://docs.docker.com/compose/) (not docker-compos

Build the base image for local development.

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

!!! note

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "coscup-volunteer"
version = "2022.10.13"
version = "2022.10.17"
description = "COSCUP Volunteer 志工服務系統,主要解決招募、人員管理、行政流程建立。"
authors = ["COSCUP Volunteer <volunteer@coscup.org>"]
license = "AGPL-3.0"
Expand Down

0 comments on commit d409dc9

Please sign in to comment.