Skip to content

Commit

Permalink
Static apache2 version in the gitserver image (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
pPrecel authored May 28, 2024
1 parent e257f7c commit 53ce16a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/gitserver/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM alpine:3.20

RUN apk add --no-cache git-daemon apache2 apache2-utils && \
RUN apk add --no-cache git-daemon && \
# apache2 and apache2-utils need to be in version smaller or equal to 2.4.58-r0
# issue: https://github.com/kyma-project/serverless/issues/998
apk add --no-cache apache2=2.4.58-r0 apache2-utils=2.4.58-r0 --repository http://dl-cdn.alpinelinux.org/alpine/v3.15/main && \
apk upgrade --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
expat

Expand Down

0 comments on commit 53ce16a

Please sign in to comment.