cursor / Dockerfile
JIMMYGGG's picture
Update Dockerfile
f3c89df verified
raw
history blame contribute delete
236 Bytes
FROM node:lts-alpine
EXPOSE 3000
ENV TZ=Asia/Shanghai \
x-cursor-checksum=zoM7J8yQgF0hBkK6v5Z9x3C1w4n7tLr2O0p5q8rDsE9iTuUvY1aWxH4fGdFeCbDa3j6k5l4mIoNpQr8s7t6u5v4w3x2y1z0
WORKDIR /app
COPY . .
RUN yarn
CMD ["npm", "run", "start"]