getting-started-app/Dockerfile
surajkumarsingh03 8544137161 docker changes
2024-12-08 19:44:00 +05:30

17 lines
277 B
Docker

FROM node:18-alpine
# Set the working directory
WORKDIR /app
# Copy application code to the container
COPY . .
# Install dependencies
RUN yarn install --production
# Expose the port the app runs on
EXPOSE 3000
# Command to run the application
CMD ["node", "src/index.js"]