claudeaaa / Dockerfile
canyuelangzzy's picture
Upload 4 files
bb2e183 verified
raw
history blame contribute delete
188 Bytes
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"]