This commit is contained in:
紫云徽 2024-08-05 21:05:25 +08:00
parent a32e2db264
commit 71c0f225d0

View File

@ -2,9 +2,8 @@ FROM oven/bun:latest
WORKDIR /usr/src/app
COPY ./config.json /config
COPY . .
RUN bun install --frozen-lockfile --production
RUN bun install --production
ENV NODE_ENV=production
RUN bun run build
EXPOSE 7000/tcp
VOLUME [ "/config"]