nextjs-replicate / Dockerfile
AnthoneoJ's picture
Upload 16 files
cf476f3 verified
raw
history blame
556 Bytes
# ==== CONFIGURE =====
# Use a Node 20 base image
FROM node:20
# Set the working directory to /code inside the container
WORKDIR /code
# Copy app files
COPY . .
# ==== BUILD =====
# Install dependencies (npm ci makes sure the exact versions in the lockfile gets installed)
RUN npm ci
# Build the app
RUN npm run build
# ==== RUN =======
# Set the env to "production"
ENV NODE_ENV production
# Expose the port on which the app will be running (3000 is the default that `serve` uses)
EXPOSE 7860
# Start the app
CMD [ "npx", "serve", "-l", "7860", "build" ]