diff options
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r-- | .devcontainer/Dockerfile | 39 |
1 files changed, 39 insertions, 0 deletions
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 |