Compare commits

..

No commits in common. "71c0f225d0fc34a91cadc7f6848feffdd3c87f86" and "d67c94bcdc587546572c4efb53fbf423e9fbf9cc" have entirely different histories.

View File

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