Commit 6d2f7e14 authored by Александр Плохих's avatar Александр Плохих 🌔
Browse files

remake Dokerfile

parent 4fc6bc89
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
FROM php:alpine

VOLUME ./:./app

WORKDIR app

COPY . .


ENV COMPOSER_ALLOW_SUPERUSER=1
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN composer install

CMD ["php"]
 No newline at end of file