Muzammil12 / Dockerfile
muzamilkhan804's picture
Upload 4 files
0afbe73 verified
raw
history blame contribute delete
412 Bytes
FROM node:lts-buster
USER root
RUN apt-get update && \
apt-get install -y ffmpeg webp git && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
USER node
RUN git clone https://github.com/Mujjilounda/Lara.git /home/node/SUBZERO-MD
WORKDIR /home/node/SUBZERO-MD
RUN chmod -R 777 /home/node/SUBZERO-MD/
RUN yarn install --network-concurrency 1
EXPOSE 7860
ENV NODE_ENV=production
CMD ["npm", "start"]