From ad57e0685ee26c788e81865519cc47f497be566e Mon Sep 17 00:00:00 2001 From: hello Date: Fri, 28 Feb 2025 02:53:28 +0530 Subject: [PATCH] added docker config --- .dockerignore | 6 ++++++ Dockerfile | 31 +++++++++++++++++++++++++++++++ docker-compose.yml | 8 ++++++++ 3 files changed, 45 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 docker-compose.yml diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..514cf5c --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +node_modules +dist +.git +.github +.gitignore +README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d3b49bb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,31 @@ +# Build stage +FROM oven/bun:latest as build + +WORKDIR /app + +# Copy package files and install dependencies +COPY package.json bun.lockb* ./ +RUN bun install --frozen-lockfile + +# Copy all files +COPY . . + +# Build the app +RUN bun run build + +# Serve stage with Bun +FROM oven/bun:latest + +WORKDIR /app + +# Install a simple HTTP server +RUN bun add serve + +# Copy built assets from build stage +COPY --from=build /app/dist /app/dist + +# Expose port +EXPOSE 3000 + +# Start the static file server +CMD ["bunx", "serve", "dist", "-s", "-p", "3000"] diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..127a390 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,8 @@ +version: "3" + +services: + searchlock: + build: . + ports: + - "5345:3000" + restart: unless-stopped