Limpiando proyecto

This commit is contained in:
2025-01-05 01:45:57 -03:00
parent 5158c888d2
commit c576bd836e
45 changed files with 99 additions and 1349 deletions

View File

@@ -1,6 +1,12 @@
FROM php:8.4-fpm-alpine
RUN apk add --no-cache nginx git curl zip unzip supervisor postgresql17-dev \
&& docker-php-ext-install pdo_pgsql
ARG UID=1000
ARG GID=1000
RUN apk add --no-cache shadow nginx git curl zip unzip supervisor nodejs-current npm postgresql17-dev \
&& docker-php-ext-install pdo_pgsql \
&& usermod -u 1000 www-data \
&& groupmod -g 1000 www-data
WORKDIR /var/www/html
@@ -13,6 +19,7 @@ COPY supervisord.conf /etc/supervisord.conf
COPY entrypoint.sh /etc/entrypoint.sh
COPY ./ ./
RUN chown -R www-data:www-data /var/www/html \
&& composer dump-autoload \
&& rm -rf /tmp/* /var/tmp/*