Compare commits

...

2 Commits

Author SHA1 Message Date
71c0f225d0 7 2024-08-05 21:05:25 +08:00
a32e2db264 test6 2024-08-05 21:00:16 +08:00

View File

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