-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
68 lines (59 loc) · 2.5 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
################################################################################
# base image
################################################################################
FROM debian:11.0-slim
################################################################################
# build args & environment vars
################################################################################
ARG DEBIAN_FRONTEND=noninteractive
ARG APP_PHP_VER="8.2"
ARG APP_COMPOSER_VER="2.7.6"
ENV TERM=xterm
ENV PATH=${PATH}:/app/vendor/bin
################################################################################
# source code
################################################################################
COPY . /app
WORKDIR /app
################################################################################
# dependencies
################################################################################
RUN apt-get update && apt-get install -y -qq --no-install-recommends \
ca-certificates \
lsb-release \
curl \
git \
unzip \
python3-pip; \
\
################################################################################
# python packages
################################################################################
\
pip3 install lastversion; \
\
################################################################################
# php & composer
################################################################################
\
curl https://packages.sury.org/php/apt.gpg --output /etc/apt/trusted.gpg.d/php.gpg; \
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list; \
apt-get update && apt-get install -y -qq --no-install-recommends \
php${APP_PHP_VER}-cli \
php${APP_PHP_VER}-curl \
php${APP_PHP_VER}-mbstring \
php${APP_PHP_VER}-dom; \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --version=${APP_COMPOSER_VER} --filename=composer; \
\
################################################################################
# apt-cache
################################################################################
\
apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*; \
\
################################################################################
# composer install
################################################################################
\
composer install --no-dev;
ENTRYPOINT ["php", "/app/nevermind.php"]