-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
44 lines (40 loc) · 770 Bytes
/
Dockerfile
File metadata and controls
44 lines (40 loc) · 770 Bytes
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
FROM ubuntu:20.04
ENV TZ=Europe/Amsterdam
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && \
apt-get install -y \
apache2 \
barcode \
build-essential \
composer \
curl \
fonts-freefont-ttf \
gcc \
ghostscript \
git \
libapache2-mod-php \
locales \
php-cli \
php-curl \
php-dev \
php-gd \
php-intl \
php-mbstring \
php-mysql \
php-pear \
php-redis \
php-soap \
sudo \
unoconv \
unzip \
wget \
zip \
&& \
apt-get clean
RUN a2enmod php7.4 && \
a2enmod rewrite && \
a2enmod expires && \
a2enmod headers && \
a2enmod ssl && \
phpenmod mbstring
EXPOSE 80 443