Files
labFusion/services/api-docs/Dockerfile.dev

19 lines
245 B
Docker

FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port
EXPOSE 8083
# Start the application in development mode
CMD ["npm", "run", "dev"]