Skip to content

Commit

Permalink
Merge pull request #156 from jajik/update-httpd-container
Browse files Browse the repository at this point in the history
test: Use the new httpd and Fedora
  • Loading branch information
rhusar authored Oct 19, 2023
2 parents bdabb59 + 5b64527 commit e5e0002
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/httpd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG HTTPD_SOURCES="https://dlcdn.apache.org/httpd/httpd-2.4.57.tar.gz"
ARG HTTPD_SOURCES="https://dlcdn.apache.org/httpd/httpd-2.4.58.tar.gz"

FROM fedora:37
FROM fedora:38

RUN yum install gcc wget apr-devel apr-util-devel openssl-devel pcre-devel redhat-rpm-config wcstools git autoconf -y

Expand All @@ -15,9 +15,10 @@ ADD mod_proxy_cluster /
ADD run.sh /tmp

RUN wget $HTTPD
RUN tar xvf $(filename $HTTPD)
RUN mkdir httpd
RUN tar xvf $(filename $HTTPD) --strip 1 -C httpd
RUN ls
WORKDIR /httpd-2.4.57
WORKDIR /httpd
RUN ./configure --enable-proxy \
--enable-proxy-http \
--enable-proxy-ajp \
Expand Down

0 comments on commit e5e0002

Please sign in to comment.