diff --git a/Dockerfile b/Dockerfile index 948230e..8883be1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ FROM oven/bun:1.0.18-debian as base WORKDIR /app/prasi -COPY . . RUN apt-get update RUN apt-get install unzip +COPY package.json bun.lockb . RUN bun install +COPY . . + EXPOSE 3000/tcp CMD [ "bun", "run", "prod" ] \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index 44cf5e2..647e543 100755 Binary files a/bun.lockb and b/bun.lockb differ