Files
FHeD/Dockerfile
restyled-io[bot] adf39171a1 Restyle 🔧 Push release version to Docker image (#115)
* Restyled by php-cs-fixer

* Restyled by whitespace

Co-authored-by: Restyled.io <commits@restyled.io>
2020-08-17 12:00:35 +01:00

12 lines
351 B
Docker

FROM composer as build
COPY app /srv
RUN composer --working-dir=/srv install
FROM php:apache
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
ARG VERSION
RUN docker-php-ext-install pdo_mysql && a2enmod rewrite remoteip
COPY vhost.conf /etc/apache2/sites-enabled/000-default.conf
COPY --from=build /srv /srv
RUN echo $VERSION > /srv/includes/VERSION