finlion-website/Dockerfile.dev
TheMaddax 7a90aa3492 - Removed "View Services" link and its container
- Added inline-flex to Schedule Consultation button
    - Simplified button container markup
2024-11-29 11:02:24 -06:00

19 lines
292 B
Text

FROM node:20-alpine
# Install pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml* ./
# Install dependencies
RUN pnpm install
# Copy the rest of the application
COPY . .
EXPOSE 3000
CMD ["pnpm", "dev"]