youtube-po-token-generator/Dockerfile
Fijxu 8738a17b29
All checks were successful
Docker build image / build (push) Successful in 22s
Push tokens to redis for Invidious
2024-10-12 02:01:45 -03:00

6 lines
107 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD [ "node", "index.js" ]