Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « .devcontainer - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4374d03954f71658ad8163a158fac9a560694a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 \
    php7.4-imagick \
    php7.4-gmp \
    php7.4-apcu \
    php7.4-bcmath \
    libmagickcore-6.q16-3-extra \
    curl \
    vim \
    lsof \
    make \
    nodejs \
    npm

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