Skip to content

Commit

Permalink
Update Python to 1.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
csc-felipe committed Aug 8, 2024
1 parent 62130e6 commit b077dd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.1-alpine3.19 as BUILD
FROM python:3.12.5-alpine3.19 as BUILD

RUN apk add --update \
&& apk add --no-cache --virtual build-base libressl-dev libffi-dev gcc musl-dev python3-dev \
Expand All @@ -9,7 +9,7 @@ COPY requirements.txt /root/requirements.txt
RUN pip install --upgrade pip && \
pip install -r /root/requirements.txt

FROM python:3.12.1-alpine3.19
FROM python:3.12.5-alpine3.19

RUN apk add --no-cache --update bash

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Tiny RP is a small OpenID Connect Relying Party client that authenticates the user at the configured OpenID provider and saves the user's `id_token` and `access_token` to cookies.

## Installation
- Developed with `python 3.12.1`
- Developed with `python 3.12`
```
pip install --upgrade pip
pip install -r requirements.txt
Expand Down

0 comments on commit b077dd7

Please sign in to comment.