SUBZERO-MD / Dockerfile
mrfrank-ofc's picture
Update Dockerfile
822e135 verified
raw
history blame contribute delete
414 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/mrfrank-ofc/SUBZERO-MD /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"]