SD3.5 / Dockerfile
Persarce's picture
Upload 6 files
813204b verified
raw
history blame contribute delete
177 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"]