UNPKG

249 BPlain TextView Raw
1FROM node:8
2
3ENV REDIS_HOST localhost
4ENV REDIS_PORT 6379
5ENV NODE_ENV production
6ENV UV_THREADPOOL_SIZE 10
7
8RUN mkdir /app
9WORKDIR /app
10
11COPY package.json /app/
12COPY index.js /app/
13
14RUN cd /app
15RUN npm install
16
17EXPOSE 8080
18
19CMD ["node", "index.js"]
\No newline at end of file