Spaces:
Runtime error
Runtime error
Commit
·
1a310bd
1
Parent(s):
bdb1ead
debug 2
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -3,7 +3,7 @@ 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 |
-
|
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
|
@@ -17,5 +17,6 @@ RUN cat INSTALL
|
|
17 |
RUN echo ===================================================================
|
18 |
RUN echo
|
19 |
|
20 |
-
RUN ./configure --prefix=$HOME/apache --with-included-apr
|
21 |
|
|
|
|
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
|
|
|
17 |
RUN echo ===================================================================
|
18 |
RUN echo
|
19 |
|
20 |
+
# RUN ./configure --prefix=$HOME/apache --with-included-apr
|
21 |
|
22 |
+
CMD [ "bash","-c", "tail -F error.log" ]
|