api / dockerfile
RohanVashisht's picture
Upload 11 files
7a5aa35 verified
raw
history blame
249 Bytes
# Use official Bun image
FROM oven/bun:1.0.30
# Set working directory
WORKDIR /app
# Copy code to container
COPY . .
# Install dependencies using Bun
RUN bun install
# Expose the app port
EXPOSE 3000
# Start the server
CMD ["bun", "server.js"]