File size: 249 Bytes
7a5aa35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# 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"]
|