# Use the customized docker container. This container is based on the official node image and has the necessary dependencies to run a puppeter.
FROM subodhagraymatter/monotype:latest 

# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chrome that Puppeteer
# installs, work.
# RUN apt-get update \
#     && apt-get install -y wget gnupg \
#     && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor -o /usr/share/keyrings/googlechrome-linux-keyring.gpg \
#     && sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/googlechrome-linux-keyring.gpg] https://dl-ssl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
#     && apt-get update \
#     && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-khmeros fonts-kacst fonts-freefont-ttf libxss1 dbus dbus-x11 \
#       --no-install-recommends \
#     && service dbus start \
#     && rm -rf /var/lib/apt/lists/* \
    # && groupadd -r app && useradd -rm -g app -G audio,video app

# Set the working directory inside the container
WORKDIR /src/app

# Copy package.json and package-lock.json to the container
COPY package*.json ./

COPY .npmrc ./

#Remove the node_modules directory and package-lock.json file, then reinstall the dependencies.
RUN rm -rf node_modules package-lock.json

# Install the project dependencies
RUN npm install

# Copy the rest of the application code to the container
COPY . .

# Give app user access to all the project folder
# RUN chown -R app:app /src/app && chmod -R 777 /src/app

#USER app

# Expose the port your Nest.js application is listening on (default is 3000)
EXPOSE 4000

# Start the Nest.js application
CMD ["npm", "run", "start"]