feat: add Dockerfile for bun project

This commit is contained in:
2025-06-04 16:09:18 +09:00
parent a04c2c828e
commit 3bb26f210a

17
Dockerfile Normal file
View File

@ -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"]