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