Spaces:
Sleeping
Sleeping
| FROM node:20-alpine | |
| WORKDIR /usr/src/app | |
| COPY package*.json ./ | |
| RUN npm install | |
| RUN npm install ytdl-core@latest | |
| COPY . . | |
| # コンテナで node を非rootユーザーで実行 | |
| # RUN chown -R node:node /usr/src/app | |
| # USER node | |
| # デフォルトコマンド:index.js を実行 | |
| CMD ["node", "index.js"] | |