Skip to content

Commit 90f8f66

Browse files
authored
migrate docker image to alpine 3.20,x (#141)
* Update Dockerfile Fix #140 , #139 * Moved to alpine 3.30 * Moved from yq to yq-go * Added pcre-dev * Update requirements.txt Fix #138
1 parent a7e245d commit 90f8f66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.19.1
1+
FROM alpine:3.20
22

33
# Metadata params
44
ARG BUILD_DATE
@@ -31,7 +31,7 @@ COPY requirements.txt /
3131

3232
ENV BASEDIR="/satosa_proxy"
3333

34-
RUN apk add --update xmlsec libffi-dev openssl-dev python3 py3-pip python3-dev procps git openssl build-base gcc wget bash jq yq
34+
RUN apk add --update xmlsec libffi-dev openssl-dev python3 py3-pip python3-dev procps git openssl build-base gcc wget bash jq yq-go pcre-dev
3535

3636
RUN python3 -m venv .venv && . .venv/bin/activate && pip3 install --upgrade pip setuptools \
3737
&& pip3 install -r requirements.txt --ignore-installed --root-user-action=ignore && mkdir $BASEDIR

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jinja2>=3.0,<4
2020
pymongo # >=4.3,<4.5
2121
requests # >=2.2,<2.3
2222
asyncio
23-
aiohttp>=3.8,<3.9
23+
aiohttp>=3.9,<3.10
2424
sd-jwt

0 commit comments

Comments
 (0)