subzero-md-session / Dockerfile
mrfrank-ofc's picture
Update Dockerfile
cc04b6c verified
raw
history blame contribute delete
521 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 --mount=type=secret,id=MR_FRANK,mode=0444,required=true \
git clone https://$(cat /run/secrets/MR_FRANK)@github.com/mrfrank-ofc/Pair-Code-4.git /home/node/Pair-Code-4
WORKDIR /home/node/Pair-Code-4
RUN chmod -R 777 /home/node/Pair-Code-4
RUN yarn install --network-concurrency 1
EXPOSE 7860
ENV NODE_ENV=production
CMD ["npm", "start"]