Files
Tarokka/Dockerfile
2025-04-19 17:58:54 -04:00

18 lines
219 B
Docker

FROM node:20-slim
# Create app directory
WORKDIR /app
# Copy and install dependencies
COPY package*.json ./
RUN npm ci
# Copy the rest of the app
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]