File size: 188 Bytes
bb2e183
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:lts-alpine

EXPOSE 3000
ENV TZ=Asia/Shanghai

WORKDIR /app
COPY . .

RUN yarn config set registry https://registry.npmmirror.com/
RUN yarn

CMD ["npm", "run", "start"]