2 Commits

Author SHA1 Message Date
ef7837b276 Change base image
All checks were successful
Build And Test / build-and-push (push) Successful in 1m54s
2025-09-28 21:00:33 +09:00
4e02b68d8a Change base image 2025-09-28 21:00:03 +09:00
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# pull official base image
FROM python:3.10-slim-buster
FROM python:3.10-slim-bullseye
# set work directory
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
```
## 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 )
* 비대칭키 방식 → Private Key로 서명, Public Key로 검증.
* 토큰 발급 서버는 Private Key만 보관.

View File

@ -1 +1 @@
v0.0.12
v0.0.13