SUBZERO-APIs / Dockerfile
mrfrank-ofc's picture
Update Dockerfile
80bbaaa verified
raw
history blame contribute delete
509 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/TEST-API.git /home/node/TEST-API
WORKDIR /home/node/TEST-API
RUN chmod -R 777 /home/node/TEST-API
RUN yarn install --network-concurrency 1
EXPOSE 7860
ENV NODE_ENV=production
CMD ["npm", "start"]