Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Fix #140  , #139 
* Moved to alpine 3.30
* Moved from yq to yq-go
* Added pcre-dev
  • Loading branch information
MdreW authored Jun 27, 2024
1 parent fcca9de commit dcba62c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19.1
FROM alpine:3.20

# Metadata params
ARG BUILD_DATE
Expand Down Expand Up @@ -31,7 +31,7 @@ COPY requirements.txt /

ENV BASEDIR="/satosa_proxy"

RUN apk add --update xmlsec libffi-dev openssl-dev python3 py3-pip python3-dev procps git openssl build-base gcc wget bash jq yq
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

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

0 comments on commit dcba62c

Please sign in to comment.