stream / Dockerfile
tranquan24's picture
Create Dockerfile
1faa4f6 verified
raw
history blame contribute delete
149 Bytes
FROM node:latest
EXPOSE 7860
WORKDIR /usr/src
COPY . .
RUN npm install npm
RUN npm install axios express request dotenv
CMD ["node", "index.js"]