This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Step 1: Build the application | |
FROM node:20-alpine AS builder | |
# Set the working directory in the container | |
WORKDIR /app | |
# Copy all the application files to the container | |
COPY . /app | |
# Run your build process |