mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
12 lines
195 B
Docker
12 lines
195 B
Docker
FROM node:12-alpine
|
|
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache git
|
|
|
|
WORKDIR /home/node/app
|
|
|
|
COPY package*.json ./
|
|
RUN npm ci --only-production
|
|
COPY . .
|
|
|
|
CMD [ "node", "index.js" ] |