25 lines
526 B
Docker
25 lines
526 B
Docker
# Use Node.js 18 LTS as the base image
|
|
FROM node:18-alpine
|
|
|
|
# Set working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Copy package.json and package-lock.json (if available)
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies
|
|
RUN npm ci --only=production
|
|
|
|
# Copy the rest of the application code
|
|
COPY . .
|
|
|
|
# Create a non-root user and switch to it
|
|
RUN addgroup -g 1001 -S nodejs
|
|
RUN adduser -S nextjs -u 1001
|
|
USER nextjs
|
|
|
|
# Expose the port the app runs on
|
|
EXPOSE 19000
|
|
|
|
# Define the command to run the application
|
|
CMD ["npm", "start"] |