SUBZERO-BOT / Dockerfile
MrFrank2's picture
Create Dockerfile
c6dfca4 verified
raw
history blame
398 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/xeonser/SUBZERO /home/node/SUBZERO
WORKDIR /home/node/SUBZERO
RUN chmod -R 777 /home/node/SUBZERO/
RUN yarn install --network-concurrency 1
EXPOSE 7860
ENV NODE_ENV=production
CMD ["npm", "start"]