1
0
Fork 0
mirror of synced 2024-10-01 01:37:56 +13:00
appwrite/.gitpod.Dockerfile

9 lines
566 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 03:06:02 +13:00
RUN sudo apt install software-properties-common && sudo add-apt-repository ppa:ondrej/php -y
RUN sudo apt update
2022-03-09 04:55:52 +13:00
RUN sudo apt --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install php8.0