forked from andrey-helldar/laravel-gitlab-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
136 lines (115 loc) · 3.82 KB
/
Dockerfile
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
ARG FULL_PHP_VERSION=8.3-alpine
FROM php:${FULL_PHP_VERSION}
LABEL maintainer="Andrey Helldar"
ARG FULL_PHP_VERSION=alpine
ARG SHORT_PHP_VERSION=8.3
ENV DEBIAN_FRONTEND noninteractive
###########################################################################
# Update timezones
###########################################################################
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
###########################################################################
# Install dev dependencies
###########################################################################
RUN apk add --update linux-headers
RUN apk update && \
apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
curl-dev \
imagemagick-dev \
libtool \
libxml2-dev \
postgresql-dev \
sqlite-dev \
oniguruma-dev
###########################################################################
# Install production dependencies
###########################################################################
RUN apk add --no-cache \
autoconf \
bash \
curl \
g++ \
gcc \
git \
imagemagick \
libc-dev \
libpng-dev \
libzip-dev \
make \
mysql-client \
nodejs \
openssh-client \
postgresql-libs \
rsync \
wget \
yaml-dev \
yarn \
zlib-dev
###########################################################################
# Update PECL channel
###########################################################################
RUN pecl channel-update pecl.php.net
###########################################################################
# Install PECL and PEAR extensions
###########################################################################
RUN if [[ $SHORT_PHP_VERSION = "8.3" || $FULL_PHP_VERSION = "alpine" ]]; then \
pecl install redis && \
docker-php-ext-enable redis \
;else \
pecl install imagick redis xdebug && \
docker-php-ext-enable imagick redis xdebug \
;fi
###########################################################################
# Configure
###########################################################################
RUN docker-php-ext-configure zip
RUN docker-php-ext-install \
bcmath \
calendar \
curl \
dom \
exif \
ftp \
gd \
mbstring \
opcache \
pcntl \
pdo \
pdo_mysql \
pdo_pgsql \
pdo_sqlite \
soap \
xml \
zip
###########################################################################
# Install Composer
###########################################################################
ENV COMPOSER_HOME /composer
ENV COMPOSER_ALLOW_SUPERUSER 1
ENV PATH $HOME/.composer/vendor/bin:~/.composer/vendor/bin:./vendor/bin:/vendor/bin:/composer/vendor/bin:$HOME/.composer/vendor/bin:/var/www/vendor/bin:$HOME/.local/composer/vendor/bin:$COMPOSER_HOME/vendor/bin:$PATH
RUN curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
###########################################################################
# Install Composer & Node Dependencies
###########################################################################
RUN composer global require \
deployer/deployer \
dragon-code/codestyler \
laravel/pint
RUN curl -fsSL https://bun.sh/install | bash
###########################################################################
# Show Versions
###########################################################################
RUN composer --version
RUN dep --version
RUN codestyle --version
RUN pint --version
RUN php -v
RUN node -v
###########################################################################
# Clean Up
###########################################################################
RUN apk del -f .build-deps
# Setup working directory
WORKDIR /var/www