wechatbot / Dockerfile
Oliver233's picture
Create Dockerfile
7534b33 verified
raw
history blame contribute delete
209 Bytes
FROM node:18.17.0-alpine
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
WORKDIR /bot
COPY package.json .
RUN npm install
COPY . .
CMD [ "npm", "start" ]