[READ-ONLY] Mirror of https://github.com/mrgnw/cv.
1# Use official Playwright image with Node.js and browsers pre-installed
2FROM mcr.microsoft.com/playwright:v1.55.0-noble AS playwright-base
3
4# Install bun
5RUN npm install -g bun
6WORKDIR /app
7
8FROM playwright-base AS dev
9COPY package*.json ./
10RUN bun install
11
12COPY . .
13
14ENV NODE_ENV=development
15ENV HOST=0.0.0.0
16EXPOSE 5173
17
18# Make startup script executable
19RUN chmod +x docker-start.sh
20
21CMD ["./docker-start.sh"]