Spaces:
Running
Running
File size: 390 Bytes
7432418 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | FROM oven/bun:1 AS base
# Set working directory
WORKDIR /app
# Copy package files
COPY package.json bun.lock* ./
# Install dependencies
RUN bun install --frozen-lockfile
# Copy the rest of the application
COPY . .
# Build the application
RUN bun run build
# Expose port 7860
EXPOSE 7860
# Set environment variable for port
ENV PORT=7860
# Start the application
CMD ["bun", "start"]
|