diff options
| author | Philipp Le <philipp-le-prviat@freenet.de> | 2021-02-18 01:13:15 +0100 |
|---|---|---|
| committer | Philipp Le <philipp-le-prviat@freenet.de> | 2021-02-18 01:13:15 +0100 |
| commit | b67c617476b0e20973f1fa2001709bc53592da83 (patch) | |
| tree | 5ed3798a2549ba5efc3404470ca204c1f0957e94 /Dockerfile | |
| download | baikal-docker-b67c617476b0e20973f1fa2001709bc53592da83.zip baikal-docker-b67c617476b0e20973f1fa2001709bc53592da83.tar.gz baikal-docker-b67c617476b0e20973f1fa2001709bc53592da83.tar.bz2 | |
feat: Basic Baikal image based on PHP7 with Apache
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f3140e3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM php:7.4-apache AS intermediate + +RUN apt-get update +RUN apt-get install -y curl +RUN apt-get install -y unzip +WORKDIR /src +RUN curl -LO https://github.com/fruux/Baikal/releases/download/0.4.6/baikal-0.4.6.zip && unzip baikal-0.4.6.zip && rm -f baikal-0.4.6.zip +RUN rm -r baikal/Specific/* + +FROM php:7.4-apache + +COPY --from=intermediate /src/baikal/* /var/www/html/ +WORKDIR /var/www/html +VOLUME /var/www/html/Specific |
