Files
gridpilot.gg/apps/api/Dockerfile.dev
2025-12-15 13:34:15 +01:00

25 lines
636 B
Docker

FROM node:20-alpine
WORKDIR /app
# Install bash for better shell capabilities
RUN apk add --no-cache bash
# Copy root package.json and install dependencies
COPY package.json package-lock.json ./
RUN npm ci
RUN find ./node_modules -name "ts-node-dev" -print || true # Debugging line
# Copy apps/api and packages for development
COPY apps/api apps/api/
COPY packages packages/
COPY apps/api/tsconfig.json apps/api/
COPY tsconfig.base.json ./
EXPOSE 3000
EXPOSE 9229
# Command to run the NestJS application in development with hot-reloading
# Run from the correct workspace context
CMD ["npm", "run", "start:dev", "--workspace=api"]