Files
aiworker-frontend/Dockerfile
Hector Ros a25e287be6
Some checks failed
Build and Push Frontend / build (push) Failing after 11s
Fix Dockerfile: use bun.lock instead of bun.lockb
Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-01-20 01:21:58 +01:00

19 lines
264 B
Docker

FROM oven/bun:1.3.6-alpine
WORKDIR /app
# Copy package files
COPY package.json bun.lock ./
# Install dependencies
RUN bun install --frozen-lockfile --production
# Copy source code
COPY . .
# Expose port
EXPOSE 3001
# Start server
CMD ["bun", "run", "start"]