From 3bb26f210a93ed4e0317d829d27d444b76d8a6b6 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 16:09:18 +0900 Subject: [PATCH] feat: add Dockerfile for bun project --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b5ddf2d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use the official bun image as a base +FROM oven/bun:latest + +# Set the working directory +WORKDIR /app + +# Copy project files +COPY . . + +# Install dependencies +RUN bun install + +# Expose the port your app runs on +EXPOSE 3000 + +# Command to run the application +CMD ["bun", "run", "server.ts"]