diff options
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 |
