diff options
Diffstat (limited to 'web/Dockerfile')
| -rw-r--r-- | web/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/Dockerfile b/web/Dockerfile index 0e548f7..0161342 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -2,10 +2,13 @@ FROM oven/bun:latest WORKDIR /web -COPY . . +COPY bun.lockb . +COPY package.json . RUN bun install +COPY . . + RUN bun run build ENTRYPOINT ["bun", "start"] |
