surf-hub/fetcher/Dockerfile
2026-01-27 20:25:52 +01:00

10 lines
119 B
Docker

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