several bugfixes

This commit is contained in:
2024-04-10 13:04:37 -04:00
parent 72d2850e83
commit a238ad3b7f
8 changed files with 22 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ RUN mkdir -p /usr/local/etc/php/extra/ && \
curl -s "https://browscap.org/stream?q=Full_PHP_BrowsCapINI" -o /usr/local/etc/php/extra/browscap.ini
# NodeJS
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
RUN curl -sL https://deb.nodesource.com/setup_21.x | bash - && \
apt-get update && \
apt-get -y install nodejs && \
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null && \
@@ -41,4 +41,4 @@ RUN apt-get clean
RUN if [[ ! -z "$ADDITIONAL_SCRIPT" ]]; then $ADDITIONAL_SCRIPT; fi
COPY --from=composer /usr/bin/composer /usr/bin/composer
USER www-data
USER www-data