BioNexus / Dockerfile.dev
gaialive's picture
Upload 27 files
e4c6a7c verified
raw
history blame contribute delete
286 Bytes
# Use Node.js runtime
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install all dependencies
RUN npm install
# Copy application code
COPY . .
# Expose port
EXPOSE 5173
# Start the development server
CMD ["npm", "run", "dev"]