From 7f983cc5496ca398dfdef90d96fd0e1958371e56 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 1 Feb 2021 12:17:04 +0000 Subject: Add initial support for GitHub codespaces Signed-off-by: Lukas Reschke --- .devcontainer/Dockerfile | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .devcontainer/Dockerfile (limited to '.devcontainer/Dockerfile') diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000000..9eeda50ef92 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,39 @@ +FROM ubuntu:focal + +ARG DEBIAN_FRONTEND=noninteractive + +# PHP +RUN apt-get update -y +RUN apt-get install --no-install-recommends -y \ + php7.4 \ + php7.4-gd \ + php7.4-zip \ + php7.4-curl \ + php7.4-xml \ + php7.4-mbstring \ + php7.4-sqlite \ + php7.4-xdebug \ + php7.4-pgsql \ + php7.4-intl \ + curl \ + vim \ + lsof + +RUN echo "xdebug.remote_enable = 1" >> /etc/php/7.4/cli/conf.d/20-xdebug.ini +RUN echo "xdebug.remote_autostart = 1" >> /etc/php/7.4/cli/conf.d/20-xdebug.ini + +# Docker +RUN apt-get -y install \ + apt-transport-https \ + ca-certificates \ + curl \ + gnupg-agent \ + software-properties-common +RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - +RUN add-apt-repository \ + "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ + $(lsb_release -cs) \ + stable" +RUN apt-get update -y +RUN apt-get install -y docker-ce docker-ce-cli containerd.io +RUN ln -s /var/run/docker-host.sock /var/run/docker.sock -- cgit v1.2.3