zhaoyingbo 7c8ef60d6a
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 55s
ci: 修改husky位置
2024-08-13 01:43:09 +00:00

15 lines
201 B
Docker

FROM oven/bun:1-alpine
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
WORKDIR /app
COPY package*.json ./
COPY bun.lockb ./
RUN bun install --production
COPY . .
CMD ["bun", "start"]