Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
1 merge request!11Sta 928
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
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