diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-02-01 12:17:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 16:55:01 +0000 |
commit | 7f983cc5496ca398dfdef90d96fd0e1958371e56 (patch) | |
tree | 902d1aa19129cfb0d8e278134d1d097e10d56ca8 /.devcontainer/Dockerfile | |
parent | 26a20ed13f782418b37c16681a7ad7a0c8e943b6 (diff) | |
download | nextcloud-server-7f983cc5496ca398dfdef90d96fd0e1958371e56.tar.gz nextcloud-server-7f983cc5496ca398dfdef90d96fd0e1958371e56.zip |
Add initial support for GitHub codespaces
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
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 |