Spaces:
Runtime error
Runtime error
Commit
·
fc00a79
1
Parent(s):
61b532e
sqlite
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
FROM debian:12.6
|
|
|
2 |
|
3 |
RUN apt update -y
|
4 |
RUN apt upgrade -y
|
@@ -60,7 +61,7 @@ RUN rm /home/user/apache2/htdocs/index.html
|
|
60 |
USER root
|
61 |
|
62 |
WORKDIR /home/user
|
63 |
-
RUN apt install -y libxml2 libxml2-dev libssl-dev libz-dev libpng-dev perl pkg-config
|
64 |
RUN apt install -y libapache2-mod-php8.2 autoconf automake re2c bison
|
65 |
RUN wget https://www.php.net/distributions/php-8.3.12.tar.gz
|
66 |
RUN tar -xf php-8.3.12.tar.gz
|
|
|
1 |
FROM debian:12.6
|
2 |
+
ARG DEBIAN_FRONTEND=noninteractive
|
3 |
|
4 |
RUN apt update -y
|
5 |
RUN apt upgrade -y
|
|
|
61 |
USER root
|
62 |
|
63 |
WORKDIR /home/user
|
64 |
+
RUN apt install -y libxml2 libxml2-dev libsqlite3-dev libssl-dev libz-dev libpng-dev perl pkg-config
|
65 |
RUN apt install -y libapache2-mod-php8.2 autoconf automake re2c bison
|
66 |
RUN wget https://www.php.net/distributions/php-8.3.12.tar.gz
|
67 |
RUN tar -xf php-8.3.12.tar.gz
|