-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·61 lines (53 loc) · 1.15 KB
/
Dockerfile
File metadata and controls
executable file
·61 lines (53 loc) · 1.15 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
FROM composer
FROM php:8.4-cli
LABEL [email protected]
RUN apt-get update && apt-get install -y \
unzip \
git \
wget \
libzip-dev \
zlib1g-dev \
libpng-dev \
libicu-dev \
libxslt-dev \
libpq-dev
RUN docker-php-ext-install \
zip \
intl \
gd \
xsl \
bcmath \
pdo_mysql \
pdo_pgsql \
pgsql
COPY php.ini $PHP_INI_DIR/conf.d/
# Set timezone
RUN rm /etc/localtime
RUN ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime
# Composer
COPY --from=composer /usr/bin/composer /usr/local/bin/composer
# Chrome & Chromedriver for Panther
RUN apt-get install -y \
fonts-liberation \
libasound2 \
libatk1.0-0 \
libatspi2.0-0 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libdrm2 \
libgbm1 \
libgtk-3-0 \
libnspr4 \
libnss3 \
libpango-1.0-0 \
libxcomposite1 \
libxdamage1 \
libxfixes3 \
libxkbcommon0 \
libxrandr2 \
xdg-utils \
libu2f-udev \
libvulkan1
#RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
#RUN dpkg -i google-chrome-stable_current_amd64.deb