1
0
Fork 0
mirror of synced 2024-07-03 21:50:34 +12:00
appwrite/.gitpod.Dockerfile
2022-03-08 09:12:57 -06:00

9 lines
524 B
Docker

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
RUN sudo apt install software-properties-common && sudo add-apt-repository ppa:ondrej/php -y
RUN sudo apt update
RUN sudo DEBIAN_FRONTEND=noninteractive apt-get -y install php8.0