Commit 05efb2b8 authored by Nikita Chernykh's avatar Nikita Chernykh
Browse files

Merge branch 'STA-928' into 'main'

Sta 928

See merge request !11
parents 93113fc5 8e4f7adc
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+15 −0
Original line number Diff line number Diff line
FROM php:fpm-alpine

WORKDIR app

COPY . .

RUN apk update && \
    apk add libpq-dev && \
    docker-php-ext-install pdo pdo_pgsql 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"]
 No newline at end of file