1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00

feat: add custom Gitpod Dockerfile with PHP 8 and Deno support

This commit is contained in:
Brandon 2022-03-08 07:39:29 -06:00
parent b16257c9f1
commit 8fee065ef0
2 changed files with 9 additions and 0 deletions

6
.gitpod.Dockerfile vendored Normal file
View file

@ -0,0 +1,6 @@
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-get install php8.0

View file

@ -1,3 +1,6 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: docker-compose pull &&
docker-compose build &&