egg_attach_template/Dockerfile
2024-05-06 03:28:58 +00:00

13 lines
157 B
Docker

FROM micr.cloud.mioffice.cn/zhaoyingbo/bun:alpine-cn
WORKDIR /app
COPY package*.json ./
COPY bun.lockb ./
RUN bun install
COPY . .
CMD ["bun", "start"]