test/Dockerfile
2025-12-26 00:18:10 +00:00

13 lines
183 B
Docker

# Use official Bun image
FROM oven/bun:1-alpine
# Set working directory
WORKDIR /app
# Copy application files
COPY index.ts .
# Run the application
CMD ["bun", "run", "index.ts"]