YoutubeStreamAPI / Dockerfile
quanvndzai's picture
init
98d81d4
Raw
History Blame Contribute Delete
167 Bytes
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860
CMD [ "node", "dist/index.js" ]