1
0
Fork 0
mirror of synced 2024-07-02 13:10:38 +12:00
appwrite/.gitpod.Dockerfile

12 lines
736 B
Docker
Raw Normal View History

FROM gitpod/workspace-full
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno
2022-03-09 05:33:08 +13:00
RUN sudo a2dismod php7.4
RUN sudo a2dismod mpm_prefork
RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install apache2
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