diff --git a/.env b/.env index 96da229..123acd6 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ PYTHONPATH=./ -VERSION=24.02.15 +VERSION=24.07.20 diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml index 2db6d45..6167f6a 100644 --- a/.github/workflows/build_image.yml +++ b/.github/workflows/build_image.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Build the base image - run: docker build -t secretaryweb-base:24.02.15 -f ./Dockerfile-base ./ + run: docker build -t secretaryweb-base:24.07.20 -f ./Dockerfile-base ./ - name: List images run: docker images - name: Rename sample setting file diff --git a/Dockerfile-app b/Dockerfile-app index 33013de..dc0c7d3 100644 --- a/Dockerfile-app +++ b/Dockerfile-app @@ -1,4 +1,4 @@ -FROM secretaryweb-base:24.02.15 +FROM secretaryweb-base:24.07.20 ADD ./client_secret.json ./client_secret.json ADD ./main.py ./main.py diff --git a/Dockerfile-base b/Dockerfile-base index 12903e6..9d6fb03 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -1,4 +1,4 @@ -FROM python:3.11.8-alpine3.19 +FROM python:3.11.9-alpine3.20 WORKDIR /app ADD pyproject.toml poetry.lock ./ diff --git a/Dockerfile-base-dev b/Dockerfile-base-dev index 0e4fe79..1de8ad9 100644 --- a/Dockerfile-base-dev +++ b/Dockerfile-base-dev @@ -1,4 +1,4 @@ -FROM python:3.11.8-alpine3.19 +FROM python:3.11.9-alpine3.20 WORKDIR /app ADD pyproject.toml poetry.lock ./ diff --git a/build-base.sh b/build-base.sh index 7b29e80..7ab02a2 100644 --- a/build-base.sh +++ b/build-base.sh @@ -1 +1 @@ -docker build --no-cache=true -t secretaryweb-base:24.02.15 -f ./Dockerfile-base ./ +docker build --no-cache=true -t secretaryweb-base:24.07.20 -f ./Dockerfile-base ./