Skip to content

Commit 4e6699e

Browse files
committed
Update oauthlib to 3.2.1
Signed-off-by: Toomore Chiang <[email protected]>
1 parent 82f1dbb commit 4e6699e

10 files changed

+192
-188
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.08.31
24+
tags: coscupweb-base:22.09.20
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.08.31 -f ./Dockerfile-base-dev ./
18+
run: docker build -t coscupweb-base:22.09.20 -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.08.31
1+
FROM coscupweb-base:22.09.20
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.08.31
1+
FROM coscupweb-base:22.09.20
22

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

Dockerfile-base

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ RUN \
1212
tar xvjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0 && ./configure && make && make install && \
1313
cd ../ && rm -rf ./jemalloc* && \
1414
curl -sSL https://install.python-poetry.org | python3 - && \
15-
poetry install --no-dev
16-
17-
18-
# Cleanup
19-
RUN apk del .build-deps && \
20-
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*
15+
poetry install --no-dev && \
16+
RUN apk del .build-deps && \
17+
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*

Dockerfile-base-dev

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ RUN \
1212
tar xvjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0 && ./configure && make && make install && \
1313
cd ../ && rm -rf ./jemalloc* && \
1414
curl -sSL https://install.python-poetry.org | python3 - && \
15-
poetry install
16-
17-
18-
# Cleanup
19-
RUN apk del .build-deps && \
20-
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*
15+
poetry install && \
16+
RUN apk del .build-deps && \
17+
rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/*

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.08.31 -f ./Dockerfile-base-dev ./
83+
docker build -t coscupweb-base:22.09.20 -f ./Dockerfile-base-dev ./
8484

8585
Setup the `setting.py`
8686

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.08.31 -f ./Dockerfile-base ./
1+
docker build --no-cache=true -t coscupweb-base:22.09.20 -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.08.31 -f ./Dockerfile-base-dev ./
13+
docker build -t coscupweb-base:22.09.20 -f ./Dockerfile-base-dev ./
1414

1515
!!! note
1616

0 commit comments

Comments
 (0)