forked from LinkStackOrg/linkstack-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
62 lines (52 loc) · 1.35 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
FROM alpine:3.19.0
LABEL maintainer="JulianPrieber"
LABEL description="LinkStack Docker"
EXPOSE 80 443
# Setup apache and php
RUN apk --no-cache --update \
add apache2 \
apache2-ssl \
curl \
php82-apache2 \
php82-bcmath \
php82-bz2 \
php82-calendar \
php82-common \
php82-ctype \
php82-curl \
php82-dom \
php82-fileinfo \
php82-gd \
php82-iconv \
php82-json \
php82-mbstring \
php82-mysqli \
php82-mysqlnd \
php82-openssl \
php82-pdo_mysql \
php82-pdo_pgsql \
php82-pdo_sqlite \
php82-phar \
php82-session \
php82-xml \
php82-tokenizer \
php82-zip \
php82-xmlwriter \
php82-redis \
tzdata \
&& mkdir /htdocs
COPY linkstack /htdocs
COPY configs/apache2/httpd.conf /etc/apache2/httpd.conf
COPY configs/apache2/ssl.conf /etc/apache2/conf.d/ssl.conf
COPY configs/php/php.ini /etc/php8.2/php.ini
RUN chown apache:apache /etc/ssl/apache2/server.pem
RUN chown apache:apache /etc/ssl/apache2/server.key
RUN chown -R apache:apache /htdocs
RUN find /htdocs -type d -print0 | xargs -0 chmod 0755
RUN find /htdocs -type f -print0 | xargs -0 chmod 0644
COPY --chmod=0755 docker-entrypoint.sh /usr/local/bin/
USER apache:apache
HEALTHCHECK CMD curl -f http://localhost -A "HealthCheck" || exit 1
# Set console entry path
WORKDIR /htdocs
CMD ["docker-entrypoint.sh"]