Files
carmanagement/Dockerfile.dev
T
root 35172ab46b
Build & Deploy / Build & Push Docker Image (push) Failing after 48s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / API Unit Tests (push) Failing after 5m2s
Test / Marketplace Unit Tests (push) Failing after 4m55s
Test / Admin Unit Tests (push) Successful in 9m37s
Test / Dashboard Unit Tests (push) Successful in 9m37s
Test / API Integration Tests (push) Successful in 9m54s
add images and redesign hompeage into sections, fix the dark color
2026-06-26 21:01:02 -04:00

19 lines
378 B
Docker

FROM node:20-bookworm
WORKDIR /app
RUN npm install -g npm@10.5.0 --no-fund --no-audit
RUN corepack enable
COPY .npmrc ./
COPY package.json package-lock.json turbo.json tsconfig.base.json ./
COPY apps ./apps
COPY packages ./packages
COPY config ./config
RUN npm ci --no-fund --no-audit
EXPOSE 3000 3001 3002 3004 4000
CMD ["sh", "-c", "npm run db:generate && npm run dev"]