Nexus / Dockerfile
Severian's picture
Update Dockerfile
a76b26f
raw
history blame
215 Bytes
FROM node:18-alpine AS base
FROM base AS deps
# Build the application
RUN npm run build
# Expose port 3000 for the application
EXPOSE 3000
# Define the command to run the application
CMD ["npm", "run", "start"]