diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..07e82ef --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM oven/bun:alpine AS builder + +WORKDIR /app + +COPY . . +ENV NODE_ENV=production +RUN bun install --frozen-lockfile --production + +FROM joseluisq/static-web-server:2-alpine AS runner + +WORKDIR /public + +COPY --from=builder /app/dist . + +EXPOSE 80 \ No newline at end of file