add shell preference

This commit is contained in:
Mathieu Jaumotte 2023-02-01 11:38:14 +01:00
parent b63a4f2a5f
commit d38e9a5c0a
1 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,12 @@ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
ENV COMPOSER_ALLOW_SUPERUSER=1
ENV COMPOSER_MEMORY_LIMIT=-1
# shell bash preference
RUN sed -i " \
s|root:x:0:0:root:/root:/bin/ash|root:x:0:0:root:/root:/bin/bash|g; \
s|postgres:x:70:70:PostgreSQL user:/var/lib/postgresql:/bin/sh|postgres:x:70:70:PostgreSQL user:/var/lib/postgresql:/bin/bash|g" \
/etc/passwd
WORKDIR /var/www/app
CMD ["php-fpm"]