FROM php:8.2-apache

# Install gnupg2
RUN apt-get update && apt-get install -y gnupg2

# Install Node.js 16.x
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -

# Install Node.js and npm
RUN apt-get install -y nodejs

RUN apt install zip unzip

# Clean up APT caches to reduce the image size
RUN rm -rf /var/lib/apt/lists/*


RUN npm install -g pm2

# Set the working directory to the HTML root
WORKDIR /var/www/html