youtube-download/Dockerfile

6 lines
96 B
Docker

FROM node:16-alpine
WORKDIR /app
COPY . .
RUN yarn install
EXPOSE 2222
CMD ["node", "server.js"]