Change base image

This commit is contained in:
2025-09-28 21:00:03 +09:00
parent 0fc7d3e9bb
commit 4e02b68d8a
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# pull official base image # pull official base image
FROM python:3.10-slim-buster FROM python:3.10-slim-bullseye
# set work directory # set work directory
WORKDIR /usr/src/app WORKDIR /usr/src/app

View File

@ -12,6 +12,10 @@ python3 manage.py runserver 0.0.0.0:8000
gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3 gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3
``` ```
## 2025-09-28 RS256변경 적용 ( v0.0.13 )
* Docker Build base image 변경.
* python:3.10-slim-buster > python:3.10-slim-bullseye
## 2025-09-28 RS256변경 적용 ( v0.0.12 ) ## 2025-09-28 RS256변경 적용 ( v0.0.12 )
* 비대칭키 방식 → Private Key로 서명, Public Key로 검증. * 비대칭키 방식 → Private Key로 서명, Public Key로 검증.
* 토큰 발급 서버는 Private Key만 보관. * 토큰 발급 서버는 Private Key만 보관.