We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 8ba6ea2Copy full SHA for 8ba6ea2
2 files changed
Dockerfile
@@ -0,0 +1,18 @@
1
+FROM eu.gcr.io/long-grin-186810/rs-php:7.3.6-apache-2.4.25.0
2
+MAINTAINER Ralph Schuster <github@ralph-schuster.eu>
3
+
4
+ADD etc/php/ /usr/local/etc/php/conf.d/
5
+ADD etc/conf/ /etc/apache2/conf-enabled/
6
+ADD etc/mods/ /etc/apache2/mods-enabled/
7
+ADD etc/sites/ /etc/apache2/sites-enabled/
8
+ADD src/ /var/www/html/
9
+RUN chown -R www-data:www-data /var/www/html
10
11
+RUN cd /var/www/html \
12
+ && curl -o postfixadmin.tar.gz https://netcologne.dl.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-3.2/postfixadmin-3.2.tar.gz \
13
+ && tar --strip-components=1 -xzvf postfixadmin.tar.gz \
14
+ && rm postfixadmin.tar.gz \
15
+ && mkdir templates_c \
16
+ && chown -R www-data:www-data .
17
18
0 commit comments