From 919e8212569ded7c71165f354a783979aa933ea9 Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Tue, 1 Nov 2022 17:49:09 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6eb7766..0580418 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.1.10-fpm +FROM php:8.1-fpm ARG WORKDIR=/var/www/html ENV DOCUMENT_ROOT=${WORKDIR} ENV LARAVEL_PROCS_NUMBER=1 @@ -26,9 +26,9 @@ RUN apt-get update && apt-get install -y \ nano \ cron -#RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION} | bash - +RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION} | bash - # Install Node -#RUN apt-get install -y nodejs +RUN apt-get install -y nodejs # Install nginx RUN apt-get update && apt-get install -y nginx