loreal-spec-tool/Dockerfile
Phil Dore 21fcf63431 Initial commit — L'Oréal Spec Tool
238 specs (CH/CZ/DE/NORDICS), dark/light theme, cascading filters,
side-by-side comparison, checklist export, admin panel, bulk import.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 18:39:10 +01:00

16 lines
227 B
Docker

FROM node:20-alpine
WORKDIR /app/server
COPY server/package*.json ./
RUN npm ci --only=production
COPY server/ ./
COPY index.html script.js /app/
ENV NODE_ENV=production
ENV PORT=3101
EXPOSE 3101
CMD ["node", "index.js"]