ladogton2010 commited on
Commit
a86048b
·
1 Parent(s): 2fcace1

Test Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM debian:12.6
2
+
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
+
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
10
+ RUN ls -la
11
+ RUN ./configure --prefix=$HOME/apache --with-included-apr
12
+