From ebfc12e8b45e8e32b1b792bc59180df670c3612d Mon Sep 17 00:00:00 2001 From: Ziyunhui Date: Mon, 5 Aug 2024 21:27:53 +0800 Subject: [PATCH] 9 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58dfd8c..41f8117 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM oven/bun:latest WORKDIR /usr/src/app +MKDIR /config COPY ./config.json /config COPY . . -RUN bun install --production +RUN bun install --frozen-lockfile --production ENV NODE_ENV=production EXPOSE 7000/tcp