ladogton2010 commited on
Commit
12e05ba
·
1 Parent(s): f9915d1
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -3,7 +3,10 @@ FROM debian:12.6
3
  RUN apt update -y
4
  RUN apt upgrade -y
5
  RUN apt install -y curl unzip wget xz-utils php-xml php-sqlite3 gcc make libapr1-dev libaprutil1-dev
6
- RUN apt install -y apr apr-util
 
 
 
7
  RUN wget https://dlcdn.apache.org/httpd/httpd-2.4.62.tar.gz
8
  RUN tar -xf httpd-2.4.62.tar.gz
9
  RUN cd httpd-2.4.62
@@ -16,7 +19,6 @@ RUN echo
16
  RUN cat INSTALL
17
  RUN echo ===================================================================
18
  RUN echo
19
- RUN apt search "Apache Portable Runtime Library"
20
 
21
  # RUN ./configure --prefix=$HOME/apache --with-included-apr
22
 
 
3
  RUN apt update -y
4
  RUN apt upgrade -y
5
  RUN apt install -y curl unzip wget xz-utils php-xml php-sqlite3 gcc make libapr1-dev libaprutil1-dev
6
+ RUN apt search "Apache Portable Runtime Library"
7
+ RUN apt search "Apache Portable Runtime Utility "
8
+ RUN apt install -y apr apr-util libapr1 libaprutil1
9
+
10
  RUN wget https://dlcdn.apache.org/httpd/httpd-2.4.62.tar.gz
11
  RUN tar -xf httpd-2.4.62.tar.gz
12
  RUN cd httpd-2.4.62
 
19
  RUN cat INSTALL
20
  RUN echo ===================================================================
21
  RUN echo
 
22
 
23
  # RUN ./configure --prefix=$HOME/apache --with-included-apr
24