File size: 612 Bytes
4551786
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM node:lts-buster
# Install required packages
RUN apt-get update && \
    apt-get install -y \
    git \
    ffmpeg \
    imagemagick \
    webp && \
    apt-get upgrade -y && \
    rm -rf /var/lib/apt/lists/*

# Set the working directory
WORKDIR /app

# Clone the repository
RUN git clone https://github.com/atanu6789/MUZAMIL-ZAKHMI-MD

# Set the working directory to the cloned repository
WORKDIR /app/silana-lite-ofc

# Grant permissions, clear cache, and install dependencies
RUN chmod -R 777 /app && \
    npm cache clean --force && \
    npm install --force

# Start the application
CMD ["npm", "start"]