Skip to content
Snippets Groups Projects
Commit 43d093b2 authored by Адлан Шамавов's avatar Адлан Шамавов
Browse files

STA-929 | Добавил Dockerfile

parent 043d3738
No related branches found
No related tags found
1 merge request!10Sta 929
FROM php:fpm-alpine
WORKDIR "/app"
COPY .. .
RUN set -ex \
&& apk --no-cache add \
postgresql-dev
RUN docker-php-ext-install pdo pdo_pgsql
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-fpm"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment