1
0
Fork 0
mirror of synced 2024-06-30 04:00:34 +12:00
appwrite/.gitpod.Dockerfile

14 lines
563 B
Docker
Raw Normal View History

FROM gitpod/workspace-full
# Disable current PHP installation
2022-03-09 05:33:08 +13:00
RUN sudo a2dismod php7.4
RUN sudo a2dismod mpm_prefork
# Install apache2 (PHP install requires to do this first)
2022-03-09 05:33:08 +13:00
RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install apache2
# Update to PHP 8.0 with unattended installation
2022-03-09 05:33:08 +13:00
RUN sudo apt --yes install software-properties-common && sudo add-apt-repository ppa:ondrej/php -y
2022-03-09 03:06:02 +13:00
RUN sudo apt update
2022-03-09 05:33:08 +13:00
RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install php8.0